// JavaScript Document

//GENERAL FLASH CONTENT
function flashcontent(url, width, height){
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="'+width+'" height="'+height+'">');
document.write('<param name="movie" value="'+url+'" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="allowFullScreen" value="true" />');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="bgcolor" value="000000">');
document.write('<param name="AllowScriptAccess" VALUE="always">');
document.write('<embed src="'+url+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"  bgcolor="#000000" allowFullScreen="true" wmode="transparent" allowScriptAccess="always">');
document.write('</embed>');
document.write('</object>');
}


//CREATES POP-UP WINDOW
function popup(theURL,winName,features) { 
if (isLoggedIn>0)
{
  window.open(theURL,winName,features);
  return true;
}
  else
 {
 window.alert("You must be logged-in");
 return false;
 }
}


//SHOWS HIDES TRAILER
function showhide(id){ 

if (document.getElementById){ 

obj = document.getElementById(id); 
obj2 = document.getElementById("lgContest");


if (obj.style.display == "none"){ 

obj.style.display = "block";
obj2.style.display = "none";
document.getElementById(id).innerHTML='<img src="http://creative.myspacecdn.com/Client/Lionsgate/PunisherWarZone/Images/headerNavSweepEnd.jpg" alt="Punisher In Theaters December 5, 2008" width="834" height="40" border="0" usemap="#Map3" /><map name="Map3" id="Map3"><area shape="rect" coords="268,23,358,39" href="javascript: showhide(\'trailer\')" /></map><br/><iframe src="http://creative.myspacecdn.com/Client/Lionsgate/PunisherWarZone/HDtrailer.html" name="ifrm" id="ifrm" scrolling="no" frameborder="0" marginheight="0" marginwidth="0" width="832" height="430" allowtransparency="true"></iframe>';

} else { 

obj.style.display = "none"; 
obj2.style.display = "block"; 
document.getElementById(id).innerHTML='<embed></embed>';

} 

} 

}