var newwindow;
function openWindow(url, height, width, scroll)
{
	newwindow=window.open(url,'name','height='+height+',width='+width+',scrollbars='+scroll+',resizable=yes');
	if (window.focus) {newwindow.focus()}
}
