function popit(url,name,w,h) {
 	var popWin = window.open(url,name,'toolbar=no,status=no,location=no,resizable=no,menubar=no,width=' + w + ',height=' + h);
	popWin.focus();
	 } 
function popitbars(url,name,w,h) {
 	var barWin = window.open(url,name,'toolbar=yes,status=no,location=no,resizable=yes,menubar=no,width=' + w + ',height=' + h);
	barWin.focus();
	 } 
