/* %~%@ < 1.000 > @%~% */
/* %~%# < 08/30/2007 > #%~% */
/* %~%! < s_general > !%~% */

function ShowNotes(notes) {
		if (document.getElementById) {
			document.getElementById("ImageNotes").contents = notes;
			document.getElementById("ImageNotes").innerHTML = notes;
	 }
	
	if (document.all) {
			document.all["ImageNotes"].contents = notes;
			document.all["ImageNotes"].innerHTML = notes;
	 }
	
	if (document.layers) { 
			var d = document.layers["ImageNotes"]; 
			d.document.open();
			d.document.writeln(notes);
			d.document.close();
	}
}

function MM_openPPWindow(theURL,winName,features) { //v2.0
	var NewWin = window.open(theURL,winName,features);
	NewWin.focus();
}

