// Opens the browser's print window
/*function printWindow() {
	window.print();
	return false;
}
*/

// Open popup window
function openWindow(theURL) { //v2.0
	var oWin = window.open(theURL, "","toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=700,height=470");
	if (oWin==null || typeof(oWin)=='undefined') {
		alert('You have a popup blocker installed. Please, deactivate it in order to execute iWeb correctly.');
	}
	else
	{
		oWin.focus();
	}
	//window.showModalDialog(theURL, null,"toolbar:no;status:no;menubar:no;scrollbars:yes;resizable:yes;width:700;height:470");
}
function openWindow(theURL, winName) { //v2.0
	var oWin = window.open(theURL, winName,"toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=700,height=470");
	if (oWin==null || typeof(oWin)=='undefined') {
		alert('You have a popup blocker installed. Please, deactivate it in order to execute iWeb correctly.');
	}
	else
	{
		oWin.focus();
	}
}

// Open popup window including escape
function openWindowEscape(theURL) { 
	theURL = escape(theURL);
	window.open(theURL, "","toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=700,height=470");
}

var isIweb=1