// ############################################################
// <SCRIPT>
// Javascript Library for FlexWeb 2
// ID-3 Technologies inc. 2003
// ############################################################

// ============================================================
// PopupWindow
// ============================================================
function gf_PopUpWindow(URL, WindowName, WindowWidth, WindowHeight) {
	PosX = Math.round(screen.availWidth / 2) - (WindowWidth / 2) 
	PosY = Math.round(screen.availHeight / 2) - (WindowHeight / 2) - 20
	
	popupwin = window.open(URL,WindowName,"scrollbars=no,resizable=yes,directories=no,menubar=no,screenx=" + PosX + ",screeny=" + PosY + ",left=" + PosX + ",top=" + PosY + ",status=no,titlebar=yes,toolbar=no,height=" + WindowHeight + ",width=" + WindowWidth )
    popupwin.focus();
    return(popupwin);
}

function gf_PopUpModalWindow(URL,WindowWidth, WindowHeight) {	
	sReturnValue = window.showModalDialog(URL,'',"help:no;scroll:no;resizable:yes;center:yes;status:no;dialogHeight:" + WindowHeight + "px;dialogWidth:" + WindowWidth + "px")
    return(sReturnValue);
}

function gf_PopUpWindowExtra(URL, WindowName, WindowWidth, WindowHeight,sExtraAttributes) {
	PosX = Math.round(screen.availWidth / 2) - (WindowWidth / 2) 
	PosY = Math.round(screen.availHeight / 2) - (WindowHeight / 2) - 20
	
	popupwin = window.open(URL,WindowName,"directories=no,menubar=no,screenx=" + PosX + ",screeny=" + PosY + ",left=" + PosX + ",top=" + PosY + ",status=no,titlebar=yes,toolbar=no,height=" + WindowHeight + ",width=" + WindowWidth + "," + sExtraAttributes)
    popupwin.focus();
    return(popupwin);
}

// ############################################################
// Edition Forms
// ############################################################
function gf_OpenEmissionForm(sID){
	gf_PopUpWindow("Emissions_e.asp?PK=" + sID,"EmissionForm",600,470);
}

function lf_OpenModRegle(){
	gf_PopUpWindowExtra("http://blitzhockey.kaluxo.lan/popReglements","",430, 500, "scrollbars=yes");
}

function gf_OpenContactezNousForm(sID){
	gf_PopUpWindow("ContactezNous_e.asp?PK=" + sID,"CNForm",600,470);
}

