function writeFlash(obj){
	document.write(obj);
}


function popUpWindow(URL){
			var w = screen.width;
			var h = screen.height - 60;

  			popUpWin = window.open(URL, 'CFLGUIDE', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width=' + w + ',height=' + h +',top='+ 0 + ',left='+ 0);

			popUpWin.moveTo (0,0);
			popUpWin.focus();
		}