/* Site wide javascript functions */

function popWin(url,width,height)
{
	window.open (url,"poppedUpWindow","location=0,status=0,scrollbars=0,width=" + width + ",height=" + height);
}
function popWinScroll(url,width,height)
{
	window.open (url,"poppedUpWindow","location=0,status=0,scrollbars=1,width=" + width + ",height=" + height);
}
function popWinFull(url,name)
{
	window.open (url,name);
}

