function openDoc(docLink){
	var x,y,w,h,l,t,strSettings
	x=screen.width;
	y=screen.height;
	w=0.85*x;
	h=0.4*y;
	l=.95*(x-w);
	t=.95*(y-h);
	strSettings = "location, scrollbars=yes, resizable=yes, status=yes, toolbar=yes, menubar=yes, toolbar=yes,width=" + w + ",height=" + h + ",left=" + l + ",screenX=" + w + "top=" + t + ",alwaysRaised='yes'"
//	W=window.open(docLink,"HomepageWindow",strSettings);
//	W.focus()
	top.location = docLink
}