// JScript File
<!--


document.write("<a style='cursor:hand' onclick='window.external.AddFavorite(location.href,document.title);'><font color='#888C92' style='font-size:12px;'>FAVORITE</font></a>");
document.write("&nbsp;&nbsp;&nbsp;");
var behaviorUrl = "'url(#default#homepage)'";
var HomePageUrl = "'http://www.fireworksrising.com'";
document.write("<a onclick=this.style.behavior=" + behaviorUrl + ";this.setHomePage(" + HomePageUrl + ");><font color='#888C92' style='font-size:12px'>FRONT PAGE</font></a>");
document.write("&nbsp;&nbsp;&nbsp;");
//-->



function DrawImage(ImgD,FitWidth,FitHeight) 
{ var image=new Image(); 
image.src=ImgD.src; 
if(image.width>0 && image.height>0) 
{ 
if(image.width/image.height>= FitWidth/FitHeight) 
{ 
if(image.width>FitWidth) 
{ 
ImgD.width=FitWidth; ImgD.height=(image.height*FitWidth)/image.width; 
} else { 
ImgD.width=image.width; ImgD.height=image.height; 
} } else { 
if(image.height>FitHeight) 
{ 
ImgD.height=FitHeight; 
ImgD.width=(image.width*FitHeight)/image.height; 
} else { 
ImgD.width=image.width; ImgD.height=image.height; 
} 
}
 }
  } 
  
  
function isNULL()
  {
    if(document.all.wd.value=="" || document.all.wd.value==" Input Key")
    {
        alert('Please Input Key');
        return false;
    }
    else
    {
        return true;
    }
  }
