// JavaScript Document
function popitup(url,h,w) {
	//var winLeft = (screen.width-w)/2; 
	//var winTop = (screen.height-(h+110))/2;
	var options = ',scrollbars=no';
	var newwindow = window.open(url,'name','height='+h+',width='+w+options);
	if (window.focus) { newwindow.focus()}
}