function openWindow(theURL,height,width) {
	var winName = "'test'";
	var features = "'scrollbars=1,resizable=1,toolbar=0,location=0,menubar=0,status=0,height=" + height + ",width=" + width + "'"
  	window.open(theURL,'test',"scrollbars=0,resizable=1,height=" + height + ",width=" + width);
}