/* *****************************************
//  WebTank javascript File
//  Title: resizeWindow.js
//  File updated: 2007-08-23 12:18:42
// 
//  Do NOT manually edit this generated file
// **************************************** */


function resizeWindow() {
    
	var width = 1320;
	var height = 1010;
	
	var left = parseInt( (screen.availWidth / 2 ) - ( width / 2 ) );
	var top = parseInt( ( screen.availHeight / 2 ) - ( height /2 ) );
	
	window.resizeTo( width, height );
	window.moveTo( left, top );	

}
