var InternetExplorer= navigator.appName.indexOf ("Microsoft") !=-1; // verif du navigateur
var thewin = null;
var thewin2 = null;
if (!InternetExplorer) {
var origWidth = innerWidth;
var origHeight = innerHeight;
}      

function openwindow(theurl,winname,theWidth,theHeight,theScroll){
if (thewin && !thewin.closed && thewin.name!=winname) {thewin.close();}
winfeatures="height="+theHeight+",width="+theWidth+",status=0,toolbar=0,scrollbars="+theScroll+",top=0,left=0,screenX=0,screenY=0,resizable=0";
thewin = window.open(theurl,winname,winfeatures);
thewin.document.close();
thewin.focus();
}

function ow_send(thePath){
	openwindow("send.php3?url="+thePath,"win1",450,330,0);
}
