function popUp(u,title,w,h,sb)
{
	if (typeof(sb) == "undefined")
	{
		var sb="no";
	}
	
	var scrY = (screen.height - h)/2;
	var scrX = (screen.width - w)/2;
	
	cmd = "width=" + w + ",height=" + h + ",left=" + scrX + ",top=" + scrY + ",resizable=no,alwaysRaised=yes,depend=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + sb + ",copyhistory=no";
	hwnd=window.open(u,title,cmd);
}

function popUpImage(u,title,w,h)
{
	var scrY = (screen.height - h)/2;
	var scrX = (screen.width - w)/2;
	
	cmd = "width=" + w + ",height=" + h + ",left=" + scrX + ",top=" + scrY + ",resizable=no,alwaysRaised=yes,depend=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no";
	hwnd=window.open('',title,cmd);
	
	writeString  = "<HEAD><TITLE>" + title + "</TITLE></HEAD>"
	writeString += "<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>"
	writeString += "<IMG SRC='"+ u + "'>"; 
	writeString += "</body\n";
          
	hwnd.document.write(writeString);
}