function popWin(url,height,width,scroll) {
	newwindow=window.open(url,'newWin','"height='+ height +',width='+ width +',scrollbars='+scroll+',"');
	if (window.focus) {newwindow.focus()}
	return false;
}
