/**
 * @author mariobuitron
 */
function pantallacompleta() 
{
  resup=window.screen.height    // Determine screen resolution heigth
  resside=window.screen.width    // Determine screen resolution width
  window.moveTo(0,0)      // Move window to top-left corner 
 //window.resizeTo(resside, (resup-27)) // Make window the users resulution (27: Taskbar heigth)
  window.resizeTo(resside, resup) // Make window the users resulution (27: Taskbar heigth)
}
 
window.onload=pantallacompleta;
