<!--
//Copyright (c) Gumshoe Software Limited, 2009.
//All Rights Reserved.
//This file may not be reverse engineered, copied or sold without prior written authorisation from Gumshoe Software Limited.
//This copyright notice must remain visible inside this file at all times.
//Alterations to this web page may invalidate your warranty.
//**Start Encode**

	//var aNoteWin
	var aPopUp
	var notewidth
	var noteheight

	notewidth=600;
	noteheight=400;

function openNote(thiscode,thisnote)
	{
	windowprops='toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=' + notewidth + ',height=' + noteheight
	aPopUp=open(thiscode,thisnote,windowprops);
	ndoc=aPopUp.document;
	astr="<table border=0 width=100% height=100%><tr><td align=center valign=middle><b>Please wait while the content of this page is created ...</b></td></tr></table>";
	ndoc.write(astr);
	ndoc.close;
	}
	
function sendComment(thiscode)
	{
	windowprops='toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=' + notewidth + ',height=' + noteheight
	aPopUp=window.open('',"Comments",windowprops);
	ndoc=aPopUp.document;
	astr=thiscode;
	ndoc.write(astr);
	ndoc.close;
	self.aNoteWin=aPopUp;
	}
-->


