

function openPop(pURL,pNAME,popW,popH) {
    version = navigator.appVersion;
	var w = 800, h = 600;


	if (document.all || document.layers) {
		w = screen.availWidth;
		h = screen.availHeight;
	}
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	newwindow=window.open(pURL,pNAME,'width=' + popW + ',height=' + popH + ',scrollbars=yes,toolbar=no,status=yes,resizable=no,top=' + topPos + ',left=' + leftPos);void(0);
	
	if(!newwindow.closed){
		if (window.focus) {newwindow.focus()}
		
	}
}



function openContactPop(){
    var getURL = 'contact_fra.html';
    openPop(getURL,getURL,400,400);
}