function newwindow(URL , w , h ) {
	w=window.open(URL ,"Newwindow","width=" + w +",height=" + h+",toolbar=no,menubar=no,scrollbars=no,location=no,status=no,directory=no,resizable=yes")
w.focus();
}

