// JavaScript Document

window.focus( ) ;

function robo(){
	ww = 1000;
	wh = 800;
	x = (screen.width- ww) / 2;
	if(screen.height>768){
		y = (screen.height- wh) / 2;
	} else {
		y = 0;
	}
	sepecial =window.open("/special/robot_coupe.html","robo","location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left="+x+",top="+y+",width="+ww+",height="+wh);
	sepecial.focus();
}