function popup(pufile,puname,height,width,scrolls)
{
	var win=window.open(pufile,puname,"resizable=no,height=" + height + ",width=" + width + ",scrollbars=" + scrolls);
	win.focus();
	win.resizeTo(width,height);
}
function popup_remote(pufile,puname,height,width,scrolls)
{
	var win=window.open(pufile,puname,"status,resizable=no,height=" + height + ",width=" + width + ",scrollbars=" + scrolls);
	win.focus();
}
function popup_remote_rs(pufile,puname,height,width,scrolls)
{
	var win=window.open(pufile,puname,"status,resizable=yes,height=" + height + ",width=" + width + ",scrollbars=" + scrolls);
	win.focus();
}
