// JavaScript Document

var newwindow;
function popwindow(url, windowname, height, width, scrollbar)
{
	newwindow=window.open(url,windowname,'height='+height+',width='+width+',scrollbars='+scrollbar);
	if (window.focus) {newwindow.focus()}
}

