// JavaScript Document


function popitup(url,h,w) {
	var winsize='resizable=1,scrollbars=1,height='+h+',width='+w;
	newwindow=window.open(url,'name',winsize);
	if (window.focus) {newwindow.focus()}
	return false;
}

