// JavaScript Document

function OpenDemoProgramFullScreen(pid)
{
// js full screen opening
	var url = 'HTTP://www.meritonlinelearning.com:80/OLMS/Login/BuildDemoProfile.aspx?pid=' + pid + '&rd=1';
	var width = screen.availWidth - 12;
	var height = screen.availHeight - 60;
	var mainWin = window.open(url, '_blank', 'left=0,top=0,width=' + width + ',height=' + height + ',menubar=0,toolbar=0,resizable=1,status=1,scrollbars=1')
	if (!mainWin)
	{
		alert("Your window has been blocked. \n\n Try pressing Ctrl while clicking the link. \n\nYou can check your browser information bar for more details.\nYou can also edit your popup-blocker settings to always allow popups for this site.");
	}
}
