function resizeThis2() {
	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;
		}
	}
}

function openSite(fURL) {
	var screen_height = screen.height;
	var screen_width = screen.width;
	var url = "";		
	var buffer = (document.all || document.layers) ? 30 : 48;
	url = fURL;
	var window_width =  screen.availWidth;
	var window_height = screen.availHeight;
	var winFull = "winFull";
	var features = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + window_width + ",height=" + window_height + ",left=0,top=0";
	window.open(url,winFull,features);
}
