// JavaScript Document

function show(id)
{
	if (document.getElementById(id).style.display == 'none')
	{
		document.getElementById(id).style.display = '';
	}else
	{
		document.getElementById(id).style.display = 'none';
	}
}

function openNewWindow(targ,MyWin,title,ww,hh)
{
	//parametrs = "width="+ww+','+"height="+hh+", top=100, left=100, resizeable=no, scrollbars=no, channelmode=no, directories=no, location='ddddd', menubar=no, status=no, toolbar=no, titlebar='ddddddd'";
	//newWindow = window.open (targ,MyWin,parametrs, true);
	//newWindow.document.open();
	
	var xtop = (screen.height)/2-hh, xleft = (screen.width)/2-ww;
	
	var rule = "<img src='"+targ+"' height="+hh+" width="+ww+" border=0 alt=''>";
	msg = "<html><head><TITLE>"+title+"</TITLE></head>";
	msg += "<BODY BGCOLOR=#ffffff RIGHTmargin=0 TOPmargin=0 LEFTmargin=0 BOTTOMmargin=0>" + rule +"</BODY></html>";

	popup = window.open("",MyWin,"height="+hh+",width="+ww+",top="+xtop+",left="+xleft+",scrollbars=auto");
	popup.document.write(msg);

	//newWindow.document.focus();
	//newWindow.innerWidth = 1200;
	//newWindow.innerHeight = 1200;
}
