var newwindow;
function detailsPopup(url)
{
        newwindow=window.open(url,'name','height=420,width=600,scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,menubar=no,left=1,top=1');
        if (window.focus) {newwindow.focus()}
}

function Popup(url,windowname,w,h,x,y){
        window.open(url,windowname,"resizable=no,toolbar=no,scrollbars=yes,menubar=no,status=no,directories=no,width="+w+",height="+h+",left="+x+",top="+y+"");
}

function targetopener(mylink, closeme, closeonly) {
	if (! (window.focus && window.opener))return true;
	window.opener.focus();
	if (! closeonly)window.opener.location.href=mylink.href;
	if (closeme)window.close();
	return false;
}

