/*	h3 :: Website Services - Contenido customized
	Fileame:		standard.js
	Description:	Javascript utilities
	Remarks:
	Format:			Tab width 4

	Version/Date:	0.41	30.11.2006, tom
*/

// For the print preview
var winPrint = null;
function printView() {
	document.printForm.printContent.value = document.getElementById("content").innerHTML;
	if (winPrint == null || winPrint.closed == true) {
		winPrint = window.open("","winPrint","width=740,height=550,left=20,top=20,dependent=no,hotkeys=yes,location=no,menubar=yes,resizable=yes,scrollbars=yes,status=no,toolbar=yes");
	}
	winPrint.focus();
	document.printForm.submit();
}


// Starts newsletter subscription window
var winSubscr = null;
function startSubscr() {
	if (document.nlForm.email.value == "") return false; 
	if (winSubscr == null || winSubscr.closed == true) {
		winSubscr = window.open("","winSubscr","width=680,height=360,left=20,top=20,dependent=yes,hotkeys=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
	}
	winSubscr.focus();
	return true;
}

