﻿// JScript : play flash or show image for Advertisement

function ShowAD(NameFile, width, height,toUrl){
  var flag=0;
  var strA =NameFile;
  var iSite = strA.indexOf('.');
  var strB = strA.substr(iSite+1,3);
  if("swf"!=strB)
    flag = 0; //picture
  else
    flag = 1; //flash
 
  if(0!=flag) {
	    document.writeln('<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="'+width+'" height="'+height+'">');
	    document.writeln('<param name="movie" value="ufAD/'+strA+'">');
	    document.writeln('<param name="quality" value="high">');
	    document.writeln('<param name="wmode" value="transparent">');
	    document.writeln('<param name="menu" value="false">');
	    document.writeln('<embed src="ufAD/'+strA+'" width="'+width+'" height="'+height+'" align="middle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" menu="false"></embed>');
	    document.writeln('</object>');
	}
  else {
      document.write("<a href='"+toUrl+"' target=_blank><img SRC='ufAD/"+strA+"' WIDTH='"+width+"' HEIGHT='"+height+"' border=0></a>");	  
  }
}

function PlayADFst(idFile,idWidth,idHeight,idToUrl){
  var flag=0;
  var strA   = document.getElementById(idFile).value;
  var sizeW  = document.getElementById(idWidth).value;
  var sizeH  = document.getElementById(idHeight).value;
  var strUrl = document.getElementById(idToUrl).value;
  
  var iSite = strA.indexOf('.');
  var strB = strA.substr(iSite+1,3);
  if("swf"!=strB)
    flag = 0; //picture
  else
    flag = 1; //flash
 
  if(0!=flag) {
	    document.writeln('<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="'+sizeW+'" height="'+sizeH+'">');
	    document.writeln('<param name="movie" value="ufAD/'+strA+'">');
	    document.writeln('<param name="quality" value="high">');
	    document.writeln('<param name="wmode" value="transparent">');
	    document.writeln('<param name="menu" value="false">');
	    document.writeln('<embed src="ufAD/'+strA+'" width="'+sizeW+'" height="'+sizeH+'" align="middle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" menu="false"></embed>');
	    document.writeln('</object>');
	}
  else {
      document.write("<a href='"+strUrl+"' target=_blank><img SRC='ufAD/"+strA+"' WIDTH='"+sizeW+"' HEIGHT='"+sizeH+"' border=0></a>");	  
  }
}

