// JavaScript Document

function showFull(href,winName,winFeatures){
	if (winFeatures=='tclFeatures')winFeatures=(safari)?'width=540,height=435,status=0':'width=540,height=417,status=0';
	if (winFeatures=='default')winFeatures='width=540,height=435,status=0';
	if (winFeatures=='defaultScroll')winFeatures='width=630,height=490,status,scrollbars,resizable';
	if (winFeatures=='offSite' || winFeatures=='fullFeatured')winFeatures='width=720,height=560,location,status,scrollbars,resizable,toolbar,menubar'
	if (winFeatures=='general')winFeatures=(mac)?'width=382,height=375,scrollbars':'width=401,height=375,scrollbars';
	if (winFeatures=='siteWin')winFeatures='width=640,height=480,scrollbars,resizable,status';
	if (document.all||document.getElementById||document.layers){
		var swidth=screen.width
		var sheight=screen.height
		if(swidth<=800){
			winFeatures+=",top=0,left=0";
		}else{
			//assuming width=760,height=550
			var tleft=(swidth/2)-380;
			var ttop=(sheight/2)-275;
			if(tleft<0)tleft=0;
			if(ttop<0)ttop=0;
			var tstr=",top="+ttop+",left="+tleft;
			winFeatures+=tstr;
		}
	}	
	var winName=window.open(href,winName,winFeatures)
	if (window.focus)winName.focus();
}
