var pWindow;
function popUp(page, pageName, w, h, scrollRsz)
{
	var sr = "yes";
	if (scrollRsz != null && scrollRsz == "no") {
		sr = "no"
	}
	features="width=" + w + ",height=" + h + ",scrollbars=" + sr + ",resizable=" + sr;
	pWindow = window.open(page, pageName, features);
	pWindow.focus(); 
}
function popInfo(popFile, options) 
{
	popWindow = window.open( popFile,'Entertainment', options);
	popWindow.focus();
}

function openNewsReleases(file)
{
	Page="/shared_session_files/shared_press_release/dsp_" + file;
	Win = window.open(Page,"newsreleases","toolbar=no,width=550,height=350,status=no,scrollbars=yes,resize=no,menubar=no");
}


function pdf_Popup(file)
{
Page= file;
Win = window.open(Page,"Entertainment","toolbar=no,width=600,height=500,status=no,scrollbars=yes,resize=yes,menubar=no");
}


