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

var flashWin = null;
function OpWin(theURL,theName) {
	leftPos = Math.floor( Math.max( 0, (screen.availWidth - 800) / 2 ) );
	topPos = Math.floor( Math.max( 0, (screen.availHeight - 600) * .45 ) );
	features = 'height=600,width=800,top='+topPos+',left='+leftPos+',scrollbars=no,resizeable=no,status=0'
	flashWin = window.open(theURL,theName,features);
	setTimeout('flashWin.focus();',250);
}