// JavaScript Document
function playBtns(){
document.write("<div id='creative2'  style='top:247px; left:300px; z-index:10000; width:174px; height:244px; position:absolute; display:none'>");
  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='174' height='244'>");
    document.write("<param name='movie' value='btns.swf'>");
    document.write("<param name='quality' value='high'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<param name='menu' value='false'>");
    document.write("<embed src='btns.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='174' height='244' wmode='transparent'></embed>");
  document.write("</object>");
document.write("</div>");
}
function playBtns1(){
document.write("<div id='creative1' style='top:247px; left:300px; z-index:10000; width:174px; height:22px; position:absolute; display:block'>");
  document.write("<img src='Images/click.gif' width='174' height='22' onClick='swapFiles()'>");
   document.write("</div>");
}
function swapFiles(){
	
	var cr2 = document.getElementById("creative2");
	var cr1 = document.getElementById("creative1");
	cr2.style.display="block";
	cr1.style.display="none";
		}
	
function reloadFile(){
	var cr2 = document.getElementById("creative2");
	var cr1 = document.getElementById("creative1");
	cr2.style.display="none";
	cr1.style.display="block";
		}