function popWindow(url,w,h)
{

newwindow=window.open(url, 'name', 'width='+ w +', height='+ h +', resizable=no, scrollbars=yes, status=yes, left=200, top=50, location=0');

if (window.focus) { newwindow.focus();	}
	
}


function popWindow800(url,w,h)
{

newwindow=window.open(url, 'name', 'width='+ w +', height='+ h +', resizable=no, scrollbars=yes, status=yes, left=100, top=50, location=0');

if (window.focus) { newwindow.focus();	}
	
}