// code for printing out a window

//function printout()
//{
//if (navigator.appVersion.substring(0,1) >= '4') window.parent.text.print();
//else
//alert("This function is not supported by your browser; please use the Print button to print this page");
//}

function popupprintout()
{
window.print();
}

function printout()
{
window.parent.text.focus();
window.print();
}

// New window function (popup)

function newWindow(targetURL){
newsWindow=window.open(targetURL, "news", "status=no,width=640,height=400,scrollbars=yes,resizable=yes,menubar=no");
}

function openWin(targetURL){
newsWindow=window.open(targetURL, "news", "status=no,width=640,height=400,scrollbars=yes,resizable=yes,menubar=no");
}