//function makeNewHelpWindow(url) {
//        testwindow=window.open(url,"subwind","resizable=1,status,height=300,width=520,scrollbars=1");
// }
 
 var newwindow;
 function makeNewHelpWindow(url){
	settings ='height=350,width=520,toolbar=0,scrollbars=1,resizable=1';
	var newwindow = window.open(url,'nameWin',settings);
	newwindow.focus();
	
}