function popWin(url,w,h,scroll,x,y,winname){
	var X = x + 50;
	var Y = y + 0;
	window.open(url,winname,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+ scroll + ',resizable=1,width=' + w + ',height=' + h + ',top=' + Y + ',left=' +X);
}

function Popup(url){
	window.open(url,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=650,height=350,left=0,top=0');
}

function fixedWind(urlx,width,height)
{
	window.open(urlx,"popwin","toolbar=no,width="+width+",height="+height+",status=no,scrollbars=no,resizable=no,menubar=no,left=50,top=25");
}

function fixedWind2(urlx,width,height,scroll,menubar,resizable,x,y)
{
	var X = x + 50;
	var Y = y + 0;
	window.open(urlx,"win",'toolbar=0,location=0,directories=0,status=0,scrollbars='+ scroll + ',menubar='+ menubar + ',resizable='+ resizable + ',width=' + width + ',height=' + height + ',top=' + Y + ',left=' +X);
}

function returnOperner(url) {
	if(top.opener && !top.opener.closed){
		top.opener.focus();
		top.close();
	}else{
		belair=window.open(url);
		belair.focus();
		top.close();
	}
}