
function popup(url, w, h)
{
	newwindow=window.open(url,'name','height='+h,'width='+w);
	if (window.focus) {newwindow.focus()}
	return false;
}

