function PWYOpenInNewWindow(Url)
{
	open(Url, 'PWYapp', 'width=600,height=400,toolbar=yes,location=no,directories=no,menubar=yes,resizable=yes,scrollbars=yes');
}

function OpenInNewWindow(Url)
{
	OpenInNewWindowEx(Url,  'width=600,height=580,toolbar=yes,location=no,directories=no,menubar=yes,resizable=yes,scrollbars=yes');
}


function OpenInNewWindowDev(Url)
{
	OpenInNewWindowEx(Url,  'width=600,height=580,toolbar=yes,location=yes,directories=no,menubar=yes,resizable=yes,scrollbars=yes status=yes');
}


function OpenInNewWindowSm(Url)
{
	OpenInNewWindowEx(Url,  'width=340,height=305,toolbar=no,location=no,directories=no,menubar=no,resizable=no,scrollbars=no');
}


function OpenInNewWindowEx(Url, OpenParams)
{
	open(Url, null, OpenParams);
}


function Pathwaysopenpop(pop, size)
{
	if (size == "small")
	{
		window.open(pop,"","width=300,height=200,top=400,left=300,resizable=yes,scrollbars=yes");
	}
	else if (size == "medium")
	{
		window.open(pop,"","width=410,height=285,");
	}
	else if (size == "large")
	{
		window.open(pop,"","width=600,height=600,top=25,left=100,menubar=yes,resizable=yes,scrollbars=yes status=yes");
	}
}



 
