// Flash handling
var playFlash = "true";
AC_FL_RunContent = 0;

// window pop handler
function PopThis(sURL, nHeight, nWidth)
	{
		if(nHeight == null)
			nHeight = 480;
		if(nWidth == null)
			nWidth = 600;	
		focusMe = window.open(sURL, 'kveWindow', config='height='+nHeight+', width=' + nWidth + ', titlebar=no, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no, status=no');
		focusMe.focus();
	}