/*POPUP WINDOW IN CENTER */
/*<a href=\"javascript:NewWindow('file.php?id=xxx','nameHere','660','700','yes');\"> */
var win= null;
function NewWindow(mypage,myname,w,h,scroll,status){
	if (status=='yes'){
		status_bar = 'yes';
	}else{
		status_bar = 'no';
	}
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;;
	var settings ='height='+h+',';
	settings +='width='+w+',';
	settings +='top='+wint+',';
	settings +='left='+winl+',';
	settings +='scrollbars='+scroll+',';
	settings +='resizable=no,';
	settings +='status='+status_bar;
	
	win=window.open(mypage,myname,settings);	
	if(parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
	}
}

function getURL() {
	var linkToGweilokid = document.getElementById('gweilokidbx_link');
	linkToGweilokid.href = "post_session.php";
}

function PopLien(url){
  var fiche = window.open(url,'Lien','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,copyhistory=0,width=400,height=450');  
  fiche.focus();
}

function PopLien2(url){
  var fiche = window.open(url,'Lien2','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,copyhistory=0,width=420,height=450');  
  fiche.focus();
}


