function newWindow(theURL, w, h){		
	window.open(theURL, 'popWindow', 'height='+h+',width='+w+',scrollbars=yes,menubar=no,status=no,toolbar=no');
}

function popupWindow(strURL){		
	window.open(strURL);
}