var newwindow;
function opennewwindow(url)
{
	newwindow=window.open(url,'new_window','height=600,width=800,left=0,top=0,screenX=0,screenY=0,scrollbars,resizable,location,toolbar');
	if (window.focus) {newwindow.focus()}
}
