// JavaScript Document
function openWinLarge(theURL,winName) { //v2.0
	features = 'menubar=yes,scrollbars=yes,width=600,height=400';
	window.open(theURL,winName,features);
}

function openWinSmall(theURL,winName,features) { //v2.0
	features = 'menubar=yes,scrollbars=yes,width=400,height=250';
	window.open(theURL,winName,features);
}

function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}