function ieFlashBugFix() {theObjects = document.getElementsByTagName("object"); for (var i = 0; i < theObjects.length; i++) { theObjects[i].outerHTML = theObjects[i].outerHTML; }}if (!window.opener) {//if demo is not ina pop up window, resize window	if (navigator.appName.indexOf('Microsoft Internet Explorer') != -1) {    window.resizeTo(880, 800);	}	else {	 window.resizeTo(850, 725);	}}function goToPage(URL) {if (!window.opener || window.opener.closed) {window.open(URL, "newWin1", "");}	else if (window.opener) { //if demo was launched from another window, load URL into other window and bring to frontwindow.opener.location = URL;}window.opener.focus();}	
