// JavaScript Document
function OpenNewWindow(url,name,toright,tobottom)
						 
		{
			leftPos =0
						 
			if (screen)
			{
				leftPos=screen.width-screen.width 
						 
			}

			window.open(url,name,"width="+toright+","+"height="+tobottom+","+"left="+leftPos+",toolbar=yes,top=0,location=no,resizable=no,scrollbars=yes,status=no"
				);
		}