var newwindow;
function opennew(url)
{
	newwindow=window.open(url,'name','height=500,width=700,left=100,top=50,resizable=yes,scrollbars=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}

