/*function openWindow(url, width, height, features) {
  var scrHeight = window.screen.height;
	var scrWidth = window.screen.width;
	var left = Math.floor((scrWidth - width) / 2);
	var top = Math.floor((scrHeight - height) / 2);
  var position = 'left=' + left + ',top=' + top;
  var size = 'width=' + width + ',height=' + height;
  window.open(url,'contact', position + ',' + size + ',' + features);
}*/
//RESIZE
function maxWindow(){
window.moveTo(0,0);
	if (document.all){
		top.window.resizeTo(screen.availWidth,screen.availHeight);
	}else if (document.layers||document.getElementById){
 		if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
    		top.window.outerHeight = screen.availHeight;
   			 top.window.outerWidth = screen.availWidth;
 		}
	}
}
maxWindow();
