function popUp(url, windowname, width, height, scroll) {
	var popWin = window.open(url, windowname, 'width='+width+',height='+height+',scrollbars='+scroll);
	if (window.focus) {popWin.focus()}
}

