/* =========================================================================
  //Object sets the url for the image that needs to be loaded in the 
  background of the back button, of the HDsmall.fla
============================================================================ */


function setImageURLObject(iURL,returnPage,loc)
{
 this.iURL = iURL;
 this.returnPage  = returnPage;	
this.loc = loc;
 
}
setImageURLObject.prototype.check = function(URL) {

         this.getIurl();
         


      
}
setImageURLObject.prototype.getIurl = function() {
    //here we call the object that can communicate with flash
    //the function setImage resides in frame("begin") in the HDsmall.fla
    //it sets the url for the image that needs to be loaded in the background of the back button
   //
    //alert(this.returnPage)
 fc.callFunction("_level0","setImage",[this.iURL,this.returnPage,this.loc]);
 //alert(this.iURL+this.returnPage+this.loc)
}

