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