var newwindow;

function popupwindow(url, name, width, height)
{
	newwindow=window.open(url, name, 'height=' + height + ',width=' + width);
	if (window.focus) {newwindow.focus()}
	newwindow.resizeTo(width, height);
}