function launch_window(dest, newWidth, newHeight, attr, target) 
{
	if( ! target )
		target = "_blank";
	win=window.open(dest, target, "width="+newWidth+",height="+newHeight+","+"status=no,menubar=no,resizable=no,alwaysraised=yes,"+attr);
	// Set the window position just off the right edge of the screen
	//position=newWidth+40;
	//win.moveTo(screen.width-position,screen.height/2-newHeight/2);
	win.opener = self
}