/***********************************************
* Pop-up site script
* http://www.yourhtmlsource.com/javascript/popupwindows.html#accessiblepopups
***********************************************/
var newwindow;
var newwindowimage;
function popwindow(url)
{

// 	newwindow=window.open('/forwarder.jsp?file='+url+'&utm_id=10','name','height=500,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	newwindow=window.open(url,'name','height=500,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
}
function popwindowimage(src,ht,wh,alt)
{
	var url = "/common/displayImg.jsp"
	url += "?src="+src;
	url += "&ht="+ht;
	url += "&wh="+wh;
	url += "&alt="+alt;
	
	newwindowimage=window.open(url,'name','height=500,width=600,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	if (window.focus) {newwindowimage.focus()}
}
