/* ==============================================================
Script:     Frameless Popup Window - Version I

Functions:  In IE4 and later, this script launches a popup
            window without the Windows frame or titlebar

Browsers:   IE4 and later

Author:     onEvent(jonty);
============================================================== */

var fenetre=null;
function popupYoutube(mypopurl,mypopname,sizew,sizeh,poppos,auFoyer) {
	if (poppos=="center") {
		magauche=(screen.width)?(screen.width-sizew)/2:100;monhaut=(screen.height)?(screen.height-sizeh)/2:100;
	} else if ((poppos!='center') || poppos==null) {
		magauche=+0;monhaut=+0
	}
	reglages="width=" + sizew + ",height=" + sizeh + ",top=" + monhaut + ",left=" + magauche + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
	fenetre=window.open(mypopurl,mypopname,reglages);
	fenetre.focus();
}

function popupGallery(mypopurl,mypopname,sizew,sizeh,poppos,auFoyer) {
	if (poppos=="center") {
		magauche=(screen.width)?(screen.width-sizew)/2:100;monhaut=(screen.height)?(screen.height-sizeh)/2:100;
	} else if ((poppos!='center') || poppos==null) {
		magauche=+0;monhaut=+0
	}
	reglages="width=" + sizew + ",height=" + sizeh + ",top=" + monhaut + ",left=" + magauche + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
	fenetre=window.open(mypopurl,mypopname,reglages);
	fenetre.focus();
}
