/*=======================================================================================*/
// doOnLoad() : runs page-load functions and creates event pointers as described below.

function doOnLoad() {
  get_title();
}

//====================================================================================
// get_title() 
// Captures the text from the content of the H1 tag.
//====================================================================================  
  
   function get_title() {
	var sTitle = contentAreaTopTD.getAdjacentText("beforeEnd");
     document.title = "Blue Wood Films - " + sTitle;
   }
   
//====================================================================================
// brwsPopup() 
// 
//====================================================================================  
function brwsPopup(sUrl,h,w,scrll,mnbr,rszbl) {
     var sWin=null;
     var sFeatures=null;
     sFeatures="height=" + h + ",width=" + w + ",scrollbars=" + scrll + ",location=no,directories=no,status=no,menubar=" + mnbr + ",toolbar=no,resizable=" + rszbl;
     sWin=window.open(sUrl,"_blank",sFeatures);
     sWin.focus();
}

//====================================================================================
// ImgPopup()
// 
//====================================================================================  
function ImgPopup(w,h,sTtl,sDesc,sImg) {
     var iHeight = (parseInt(h) + 100);
     var iWidth = (parseInt(w) + 30);
     var sFeatures = "height=" + iHeight + ",width=" + iWidth + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
     var win = window.open("","_blank",sFeatures);
     var doc = win.document;
     var sImg = "<div align='center'><img src='" + sImg + "' width='" + w + "' height='" + h + "' border='0'></div>";
     var sCls = "<div align='right'><a href='javascript:window.close()' style='font-size: 80%; font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; font-style: normal; font-weight: normal; color: #FFFFFF;'>Close window</a>&nbsp;&nbsp;&nbsp;&nbsp;</div>";
     var sDescFmt = "<p style='margin-left: 15px; margin-right: 15px; font-size: 70%; font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; font-style: normal; font-weight: normal; color: #FFFFFF;'>" + sDesc + "</p>"
     doc.open("text/html", "replace");
     doc.write("<HTML><HEAD><TITLE>" + sTtl + " - Copyright Mazzba Productions" + "</TITLE></HEAD><body  bgcolor='#000000' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'>" + sCls + sImg + sDescFmt + "</BODY></HTML>");
     doc.close();
}
     
//====================================================================================
// DisplayStatusMsg() 
// 
//====================================================================================       
function DisplayStatusMsg(msgStr) {
     status=msgStr;
     document.returnValue = true;
}   