function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=0'
win = window.open(mypage,myname,settings)
}
function OpenWindow(pag){
LeftPosition = (screen.width) ? (screen.width-700)/2:0;
TopPosition = (screen.width) ? (screen.height-500)/2:0;
settings='width=680,height=500,top='+TopPosition+',left='+LeftPosition+',scrollbars=yes';
hwnd = window.open(pag,"delarco",settings);
}
function OpenFTP(){

	user = document.formulario.user.value;
	pass = document.formulario.pass.value;
	
	if ((user == '') || (pass == '')){
		alert("Debe introducir un nombre de usuario / contraseña válidos");
	} else {
		URL = "ftp://" + user + ":" + pass + "@grupomilenium.net";
		window.open(URL,'','width=550,height=400');
	}
}

(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/es_ES/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
