// JavaScript Document
<!--
function shut2(theURL)
{
parent.ec_top.location=theURL;
}

function newWin(theURL,pageTitle,wWide,wHigh,wLeft,wTop,tBar,lBar,sPane,mBar,sBar,rSiz)
{
     var args="width=" + wWide + ",height=" +wHigh + ",left=" + wLeft + ",top=" + wTop
     + ",toolbar=" + tBar + ",location=" + lBar + ",status=" + sPane + ",menubar=" + mBar
     + ",scrollbars=" + sBar + ",resizable=" + rSiz;
   var newOne=window.open(theURL,pageTitle,args);
   newOne.focus();

}

function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}

function bmark(url, description)
{
netscape="click OK and then CTRL+D to add a bookmark to Cravenplan Web Design."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName==Netscape)
{
alert(netscape);
}
}

function mask(end,middle,start,subject){                
var one ='mai';                                         
var two='lto:';                                         
var three='?Subject=';                                  
//start,middle,end,subject;                             
var putogether= one+two+start+middle+end+three+subject; 
document.location.href=eval('"'+putogether+'"');        
window.status=putogether;            
}                   
-->