var newwindow;
function popup(url,w,h)
{
newwindow=window.open(url,'name',"toolbar=no,left=100,top=100,scrollbars=yes,resizable=yes,width="+w+",height="+h);
	if (window.focus) {newwindow.focus()}
}
