
var width=screen.width;
var height=screen.height;

function openwindow()
{
window.resizeTo(width, height*0.95); //resizing the window
window.moveTo(0,0);
}
