function openPopUp(url)
{
	contentWindow = window.open(url, "contentWindow", "height=450, width=655,resizable=no,scrollbars=no,toolbar=no,location=no,menubar=no,left=10,top=100,screenX=10,screenY=100'");
	contentWindow.focus()
}


function openPopUp2(url)
{
	popupWindow = window.open(url, "popupWindow", "height=720,width=660,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no,left=10,top=100,screenX=10,screenY=100'");
	popupWindow.focus()
}

function openPopUp3(url)
{
	popupWindow = window.open(url, "popupWindow", "width=560px,height=320px,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no,left=10,top=100'");
	popupWindow.focus()
}

function openWin(url)
{
	popupWindow = window.open(url, "popupWindow", "height=600,width=800,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no,left=0,top=0,screenX=0,screenY=0'")
}

var win
function openWin2(file,w,h,scr,menu,stat,tool,name)
        {
                win = window.open(file,name,"scrollbars="+scr+",resizable=yes,location=yes,menubar="+menu+",status="+stat+",toolbar="+tool+",width="+w+",height="+h+",screenx=0,screeny=0,top=0,left=0");
                win.focus();
        }