﻿// JScript File

function OpenMFX(url)
{
    theWidth=950;
    theHeight=600;
    var theTop=(screen.height/2)-(theHeight/2);
    var theLeft=(screen.width/2)-(theWidth/2);
    var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=yes,resizable=yes,status=0";
    theWin=window.open(''+ url +'','',features);
} 

function OpenDisclaimer()
{
    theWidth=400;
    theHeight=340;
    var theTop=(screen.height/2)-(theHeight/2);
    var theLeft=(screen.width/2)-(theWidth/2);
    var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=yes,status=0";
    theWin=window.open('Disclaimer.aspx','',features);
} 

function OpenConditions()
{
    theWidth=400;
    theHeight=340;
    var theTop=(screen.height/2)-(theHeight/2);
    var theLeft=(screen.width/2)-(theWidth/2);
    var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=yes,status=0";
    theWin=window.open('Conditions.aspx','',features);
}

function OpenInvitationConditions(filename) {
    theWidth = 400;
    theHeight = 340;
    var theTop = (screen.height / 2) - (theHeight / 2);
    var theLeft = (screen.width / 2) - (theWidth / 2);
    var features = 'height=' + theHeight + ',width=' + theWidth + ',top=' + theTop + ',left=' + theLeft + ",scrollbars=yes,status=0";
    theWin = window.open('InvitationConditions/' + filename, '', features);
} 

function OpenOffert()
{
    theWidth=400;
    theHeight=280;
    var theTop=(screen.height/2)-(theHeight/2);
    var theLeft=(screen.width/2)-(theWidth/2);
    var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=yes,status=0";
    theWin=window.open('../Popup/Offert.aspx','',features);
}

function OpenContact(id)
{
    theWidth=400;
    theHeight=360;
    var theTop=(screen.height/2)-(theHeight/2);
    var theLeft=(screen.width/2)-(theWidth/2);
    var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=auto,status=0";
    theWin=window.open('ShowMember.aspx?MemberId='+ id +'','',features);
}

function OpenImage(id, width, height) {
    theWidth = parseInt(width) + 30;
    theHeight = parseInt(height) + 30;
    var theTop = (screen.height / 2) - (theHeight / 2);
    var theLeft = (screen.width / 2) - (theWidth / 2);
    var features = 'height=' + theHeight + ',width=' + theWidth + ',top=' + theTop + ',left=' + theLeft + ",scrollbars=auto,status=0";
    theWin = window.open('OpenImage.aspx?id=' + id + '&width=' + width + '&height=' + height + '', '', features);
}

function OpenNotification(id) {
    theWidth = 400;
    theHeight = 360;
    var theTop = (screen.height / 2) - (theHeight / 2);
    var theLeft = (screen.width / 2) - (theWidth / 2);
    var features = 'height=' + theHeight + ',width=' + theWidth + ',top=' + theTop + ',left=' + theLeft + ",scrollbars=auto,status=0";
    theWin = window.open('Notifications.aspx?NotificationId=' + id + '', '', features);
}
