//////////////////////////////////// 
function oPage( p, w, h, title ){
	if(!w) w = 440;
	if(!h) h = 260;
	if(!title) title = '';
	var features = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+w+',height='+h+',dependent=1';
	window.popUpWin = window.open(p, title, features);
	window.popUpWin.focus();
}
//////////////////////////////////// 
function writeFlash( xName, xPath, W, H, xVars, xTrasp ){
	
	xVars += "&appExt=php";
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
	document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" '); 
	document.write('width="' + W + '" height="' + H + '" id="' + xName + '" align="middle"> ');
	document.write('<param name="FlashVars" value="' + xVars + '">');
	document.write('<param name="allowScriptAccess" value="sameDomain"> ');
	document.write('<param name="movie" value="' + xPath + '"> ');
	if( xTrasp==true ) document.write('<param name="wmode" value="transparent"> ');
	document.write('<embed FlashVars="' + xVars + '"  ');
	document.write('src="' + xPath + '" width="' + W + '" height="' + H + '" name="' + xName + '" align="middle" ');
	if( xTrasp==true ) document.write('wmode="transparent" ');
	document.write('swLiveConnect="true" ');
	document.write('allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" /> ');
	document.write('</object>');
	
}
//////////////////////////////////// 
function submitCommonForm( xForm, xURL ){
	var myForm = document.getElementById( xForm );
	if( xURL ){
		myForm.action = myForm.action + xURL;
	}
	myForm.submit();
}
//////////////////////////////////// 