/* Javascript function for general use in PiNation web site */
isIE=document.all;
function openTool(toolname) {
		if (toolname == 'arttool') {
			 if (isIE) { // specify the window size
				window.open("piarttool.php", "piarttool", "toolbar=yes,menubar=no,resizable=yes,scrollbars=yes,status=yes,screenX=0,screenY=0,width=" + screen.width + ",height=" + screen.height);
			 } else {
				window.open("piarttool.php", "piarttool", "toolbar=yes,menubar=no,resizable=yes,scrollbars=yes,status=yes");
			 }
		}
}

