/**************************************************************************************
FUNCTION:	getHelpWin 
INPUT:		url for the content
RETURN:  	helpWindow, alway bring on top
USAGE: 		<a href="#" onClick="goHelp('http://prite.com:8080/form/probe_sop.html')";>hyper link</a>
***************************************************************************************/
function getHelpWin(url) {
	var newWindow = window.open(url,"helpWindow","toolbar=0,menubar=0,scrollbars=1,resizable=0,height=590,width=730");
	newWindow.focus();
	newWindow.document.close();  
}