
 var left   = 20;
 var top    = 20;


var width= (screen.width)-(left*2);
var height= ((screen.height)-(top*2))-50;





function RESIZE()
{


window.resizeTo(width, height); //resizing the window

window.moveTo(left, top);



}
