﻿function OpenFPWWindow(destinationPage) {
    var x = window.open(destinationPage, "FPWWIn", 'left=150,top=150,width=405,height=182,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0', false);
}

function OpenCPWWindow(destinationPage) {
    var x = window.open(destinationPage, "CPWWIn", 'left=150,top=150,width=380,height=200,toolbar=0,location=false,directories=false,status=false,menubar=false,scrollbars=false,resizable=false,address=false,title=false', false);
}


function launchPopUp(url, intWidth, intHeight) {
    window.open(url, "win", 'top=10,left=10,width=' + intWidth + ',height=' + intHeight + ',toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1');
}

//function launchPopUp(url,intWidth,intHeight)
//{
//var leftPos = (screen.width-intWidth)/2;
//var topPos = (screen.height-intHeight)/2;
//	window.open(url,"win",'top=' + topPos + ',left=' + leftPos + ',width=' + intWidth + ',height=' + intHeight + ',toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0');	
//}

function launchPopUpMinimal(url,intWidth,intHeight)
{

	window.open(url,"win",'top=100,left=100,width=' + intWidth + ',height=' + intHeight + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0, title=0');	
}

