// JavaScript Document
function childWindow_printer(url){
	newWindow = window.open(url,"honeyChild","height=600,width=650,toolbar=no,location=no,status=no,scrollbars=yes");
	newWindow.focus();
}

	function childWindow(url){

		newWindow = window.open(url,"honeyChild","height=400,width=450,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes");
		newWindow.focus();

}

function showLarger(bigImage){

	newWindow = window.open('','bigImage','width=550,height=450,resizable=yes,scrollbars=yes,toolbar=no,location=no,status=no');
	newWindow.document.write('<HTML><HEAD></HEAD><BODY>');
	newWindow.document.write("<FORM><P ALIGN='Center'><INPUT TYPE='Button' VALUE='Close Window' ONCLICK='self.close()'");
	newWindow.document.write('</P></FORM>');
	newWindow.document.write("<IMG ALIGN='center' SRC=" + bigImage + ">");
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
    newWindow.document.focus();

}



function MyReload()
{
  window.location.reload();
}


//end of javascript

