/*function openIT(theURL,W,H,X,Y, wname, title,color) {
	window.open(theURL, "popWindow","top="+Y+",left="+X+",width="+W+",height="+H+",scrollbars=yes,resizable=0");
}*/

function openIT(url,w,h,x,y,wname,titre,color,newwin,strFeatures){
			// ouvre une fenetre sans barre d'etat, ni d'ascenceur  
			if ((strFeatures == "") || (typeof(strFeatures) == "undefined"))
				strFeatures = "toolbar=0,scrollbars=1,resizable=1";
			
			if ((titre == "")|| (typeof(titre) == "undefined"))
				titre = "win";
			if (newwin==1){
				
				win2 = open(url,titre,'width='+w+',height='+h+','+strFeatures);
			}
			else{
				mywindow = open(url,titre,'width='+w+',height='+h+','+strFeatures);	
				mywindow.focus();
			}
}