﻿// JScript File
	var helpwindow = null;
	function openhelpwindow(url) 
	{
	    if ((helpwindow == null) || (helpwindow.closed)) { 
	         helpwindow = window.open(url,"help","width=425,height=425,resizable,scrollbars,toolbar");
		}
		else{
		   helpwindow.focus();
	       helpwindow.location = url;		
		}
	}

