//Standard popup window.  Used for all documentation type displays

function open_popup(url) {
mywin = window.open(url,"opop",'toolbar=0,location=0,left=5,top=30,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=790,height=450');
mywin.focus();
mywin.document.clear();
}

//Used to target the body area to print for documentation displays

function framePrint(whichFrame){
parent[whichFrame].focus();
parent[whichFrame].print();
}

//Used to target the body area when a selection is made from a DDL for documentation displays
var theTarget = "body";
function goThere(){
if(!document.theForm.theMenu.selectedIndex==""){
window.open(document.theForm.theMenu.options[document.theForm.theMenu.selectedIndex].value,theTarget,"");}}

//Hide status bar msg script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use

//configure status message to show
var statusmsg=""

function hidestatus(){
window.status=statusmsg
return true
}

