function F_embed(value1,value2,value3){
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + value2 + '" height="' + value3 + '">');
  document.write('<param name="movie" value="' + value1 + '">');
  document.write('<param name="quality" value="high">');
  document.write('<param name="wmode" value="transparent">');
  document.write('<embed src="' + value1 + '" width="' + value2 + '" height="' + value3 + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>');
  document.write('</object>');
}

function F_embed_link(value1,value2,value3,value4){
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + value2 + '" height="' + value3 + '">');
  document.write('<param name="movie" value="' + value1 + '">');
  document.write('<param name="quality" value="high">');
  document.write('<param name="wmode" value="transparent">');
  document.write('<param name="FlashVars" value="' + value4 + '">');
  document.write('<embed src="' + value1 + '" width="' + value2 + '" height="' + value3 + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>');
  document.write('</object>');
}



function openpop(strUrl,strWidth,strHeight,strAddon)
{
	window.open(strUrl,'popwin','width='+strWidth+',height='+strHeight+strAddon);
}


function set_center(width,height,type)
{
	nWidth = width;
	nHeight = height;
	nLeft = (window.screen.width - nWidth ) / 2;
	nTop  = (window.screen.height- nHeight) / 2;
	sF = "";

	if(type=="1") sF += "toolbar=no,location=no,menubar=no,status=no,directories=no,resizable=no,scrollbars=no";
	else sF += "toolbar=no,location=no,menubar=no,status=no,directories=no,resizable=no,scrollbars=yes";

	sF += ",left=" + nLeft;
	sF += ",top=" + nTop;
	sF += ",width=" +  nWidth;
	sF += ",height=" + nHeight;

	return sF;
}

