|
|
\n'); } var openFullscreen = function(args) { var outcome = parse_outcome(args); if(outcome.mode=='real'){ $('username2').style.display='none'; $('username').style.display='block'; document.loginBox.username.focus(); new Effect.Highlight(document.loginBox.username); return false; } var width = 600; var height = 500; var left = parseInt((screen.availWidth/2) - (width/2)); var top = parseInt((screen.availHeight/2) - (height/2)); var url = 'http://www.yogano.com/es-ES/netent_splash/popup?id=' + outcome.id + '&mode=' + outcome.mode; var windowFeatures="toolbar=0,scrollbars=0,menubar=0,location=0,resizable=0,directories=0,status=0,fullscreen=yes,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top; var newWindow = open(url, outcome.id, windowFeatures); } function parse_outcome(s) { values = s.split("::"); var outcome = {id: values[0], mode: values[1] }; return outcome; } |