var newwindow;
function popupA(url)
{
	newwindow=window.open(url,'name','height=820,width=620,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 popupExternal(url)
{
	newwindow=window.open(url,'name','height=575,width=500,scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,menubar=no,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}
