function openWindow(theURL,height,width) {
	
	//var features = "config='height=" + height + ",width=" + width + ",screenX=100,screenY=100,top=100,left=100,resizable=yes,menubar=yes, scrollbars=yes'"
//alert(features);
 //+ height + ",width=" + width + "'";
 // 	window.open(theURL,'opWin',features)
  //	window.open('pagename','popup',config='height=250,width=250,screenX=100,screenY=100,top=100,left=100,resizable=yes,menubar=yes, scrollbars=yes')
window.open(theURL,"newWindow","height="+height+",width="+width+",screenX=100,screenY=100,top=100,left=100,resizable=yes,menubar=yes,scrollbars=yes")
}  
