
// for Favorites
var notShownYet = true;
function checkAlert() {
	if (notShownYet) {
		alert('When finished, remember to Save your Favorites !');
		notShownYet = false;
	}
}

function popWindow(theTemplate){
popup = window.open(theTemplate,"myWindow",
"height=400,width=400,left=100,top=20,scrollbars=yes,scrollable=yes,resizable=1");
}

function printWindow(){
	bV = parseInt(navigator.appVersion)
	if (bV >= 4) window.print()
}


