function newWindow(url)
{
	var leftPos = 0;
	if (screen)
	{
		leftPos = screen.width-650
	}
	
		{
		popupWindow = 
window.open(url,'myNewWindow','height=500,width=650,location=no,menubar=no,resizable=yes,toolbar=no,scrollbars=yes,left='+leftPos+',top=100')
		
		popupWindow.focus()
		}
}


