var secondWindow





       		function openWindow2(theURL,theWidth,theHeight) {


       		if (!secondWindow || secondWindow.closed) {


       		secondWindow = window.open(theURL,'secondWindow','width=' + theWidth + ',height=' + theHeight + ',scrollbars="no"'+', top='+30)


       		if (!secondWindow.opener)


       		secondWindow.opener = window


       		secondWindow.focus()


       		}


       		else


       		secondWindow.focus()


       		}  


      		