function openFlashWindow(file){
	window.open("loadflash.htm?filename=" + file,"flashWin","dependent,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=yes,fullscreen=yes,titlebar=yes");
}

function launchCustomPopUp(page) {
	var puWin = window.open(page,"puWindow","dependent,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,titlebar=yes,width=475,height=375,screenX=450,screenY=150,top=150,left=450");
	puWin.focus();
}
function launchSizableCustomPopUp(page,w,h,framename) {
	if (framename==null) framename = "puWindow";
	var puWin = window.open(page,framename,"dependent,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,titlebar=yes,screenX=150,screenY=150,top=150,left=150, width=" + w + ",height=" + h );
	puWin.focus();
	if (framename!=null) return puWin;
}

//apply object tag fix due to microsoft security patch
function applyIEPatch(){
	theObjects = document.getElementsByTagName("object"); 
	for (var i = 0; i < theObjects.length; i++) { 
		theObjects[i].outerHTML = theObjects[i].outerHTML; 
	}
}
