function LaunchURL(URL,Name,Height,Width,Location,Status,Scrollbars,X,Y)  {
	
testwindow= window.open (URL,Name,"location="+Location+",status="+Status+",scrollbars="+Scrollbars+",width="+Width+",height="+Height+"");
testwindow.moveTo(X,Y);

}


