function PopUpNoScroll(PopUpUrl, theName, theWidth, theHeight) {
placementx = (screen.availWidth/2) - (theWidth/2);
placementy = (screen.availHeight/2) - (theHeight/2);
WinPop=window.open(PopUpUrl, theName, "width="+theWidth+",height="+theHeight+",toolbar=0,location=0,directories=0,status=0,scrollbars=0,menubar=0,resizable=0,left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+","); }
function PopUpScroll(PopUpUrl, theName, theWidth, theHeight) {
placementx = (screen.availWidth/2) - (theWidth/2);
placementy = (screen.availHeight/2) - (theHeight/2);
WinPop=window.open(PopUpUrl, theName, "width="+theWidth+",height="+theHeight+",toolbar=0,location=0,directories=0,status=0,scrollbars=1,menubar=0,resizable=0,left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+","); }

function popupWindow(ifrmURL)
{
	document.getElementById('fromFlash').style.display = "block";
	
	document.getElementById('fromFlash').style.position = "absolute";
	document.getElementById('fromFlash').style.top = "138px";
	document.getElementById('fromFlash').style.left = "24px";
	
	document.getElementById('fromFlash').style.width = "732px";
	document.getElementById('fromFlash').style.height = "406px";
	
	document.getElementById('fromFlash').src = ifrmURL;
}

function hideDIV()
{
	document.getElementById('fromFlash').style.display = "none";
	document.getElementById('fromFlash').src = "about:blank";
}