//printing style sheets

function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature. Please print by using the print menu in your browser");
}


// image popup script
self.name = "main";

function swapEm2(imagename, stat){
                if(parseInt(navigator.appVersion) < 4){}
                else{
                        if(navigator.appName == "Netscape"){
                               eval("window.document['" + imagename + "'].src = " + imagename + "_" + stat + ".src");
                }else{
                                eval("window.document.all['" + imagename + "'].src = " + imagename + "_" + stat + ".src");
                }
        }
}




function pop_image(image,width,height) {
        window.open(escape(image),"","width="+width+",height="+height+",menubar=0,scrollbars=1,toolbar=0");
        return false;
}

function pop_image2(image,width,height) {
        window.open(image,"","width="+width+",height="+height+",menubar=0,scrollbars=1,toolbar=0");
        return false;
}



function pop(url) {
	
var loc = window.location;
      window.open(url,'pop_resource','toolbar=0,menubar=0,location=0,scrollbars=1,height=500,width=600,resizable=1');
	return false;

}

function pop_window(url,width,height) {
                window.open(url,"info",'toolbar=no,menubar=no,resizable=yes,location=no,scrollbars=yes,height='+height+',width='+width);
                return false;
        }



function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 

//-->
