<!--

var gAutoPrint = true; // Flag for whether or not to automatically call the print function

function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>\n';

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		
		html += '\n</HE' + 'AD>\n<BODY>\n';
		
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
			
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printFrendly",'toolbar=0,scrollbars=1,statusbar=0,menubar=0,resizable=0,width=620,height=500');
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}

function goSpecialMenu1(myForm, myName){
var x = myForm[myName].selectedIndex;
myForm[myName].selectedIndex = 0;
var myPage = myForm[myName][x].value;
if (myPage!='')
	parent.location.href = myPage;
  }

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function printme() {
browser = (((navigator.appName == "Netscape") &&
(parseInt(navigator.appVersion) < 4 )) || 
((navigator.appName == "Microsoft Internet Explorer") && 
(parseInt(navigator.appVersion) < 4 )))
if (browser) {
alert('You are obviously using Netscape 3 or MSIE 3. Printing is only suported by version 4+ browsers..')}
else {
	 window.print()
    	}}



//-->