function adjustScreenSize() {
   var windowWidth = window.screen.availWidth;
   var windowHeight = window.screen.availHeight;
   if(windowHeight > 800)
   	windowHeight=800;
   if(windowWidth > 829)
   	top.window.resizeTo(829,windowHeight);
   else
   	 top.window.resizeTo(windowWidth,windowHeight);    
   //alert(document.body.clientHeight + "\n" + document.body.clientWidth);
    top.window.moveTo(0,0);
window.defaultStatus="Welcome to Sequegen";
}