var newwindow;
function newWindow(url)
{
	newwindow=window.open(url,'name','height=550,width=750,menubar=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
