<!--
function popUpContent(url, x, y) {
	if (!x){x=400;}
	if (!y){y=300;}
	if (x>400 && y>300){
	var popUpWin = window.open(url,'','height='+y+',width='+x+', location=no, scrollbars=yes, menubars=no,toolbars=no,resizable=no');
	}else{
	var popUpWin = window.open(url,'','height='+y+',width='+x+', location=no, scrollbars=yes, menubars=no,toolbars=no,resizable=yes');
	}
	if (!popUpWin.opener) 
	popUpWin.opener = self;
}

function confSlideShow(sURL, id){
	var popUpWin = window.showModalDialog(sURL, id, "dialogWidth:270px;dialogHeight:170px;status:no;help:no");
}


function popUpImage(theURL,winName,width, height)
{
 popUpWin = window.open('','',"'resizable=no,scrollbars=no, width="+width+" ,height="+height+"'");
 if (!popUpWin.opener) popUpWin.opener = self;
 with (popUpWin.document)
 {
 	write('<HTML><HEAD><TITLE>View Full Image</TITLE>');
 	write('</head>');
 	write('<BODY bgcolor="#FFFFFF" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
 	write('<IMG SRC="' + theURL + '" alt="Click on image to close window" onclick="window.close()">');
 	write('</BODY></HTML>');
	close();
 }
}
//-->