

	
	function openWindow(theURL,winName,features) 
	{
  				var newWindow = window.open(theURL,'thirdwin','toolbar,location,menu bar,status,scrollbars,resizable,width=600,height=400');
  				newWindow.focus();
	}
