
function OpenWin(URL,width,height,nom)
{
	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no");
}

function OpenWin2(URL,width,height,nom)
{
	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes");
}

function getFullscreen( url ){
    var isWin=(navigator.appVersion.indexOf("Win")!=-1)? true : false;
    var isIE=(navigator.appVersion.indexOf("MSIE")!=-1)? true : false;

    if(isWin&&isIE){
        window.open(url,'theOvalpartnership','fullscreen=yes');
    }else{
        var str="left=0,screenX=0,top=0,screenY=0";
        if(window.screen){
            var ah=screen.availHeight;
            var aw=screen.availWidth;
            str+=",height="+ah;
            str+=",width="+aw;
        }

        var tmp=window.open(url,'theOvalpartnership',str);
        tmp.moveTo(0,0);
        tmp.resizeTo(aw,ah);
    }

}
