function unfocus(){
	linkTags=self.document.getElementsByTagName('a')||self.document.links;
	for(i=0;i<linkTags.length;i++)linkTags[i].onfocus=new Function('this.blur();');	
}

function fixWrapperSize() {
	if (navigator.appName.indexOf("Netscape")<0) {
		wHeight = document.body.offsetHeight;
	} else {
		wHeight = window.innerHeight - 20;
	}
	document.getElementById("wrapper").style.height = wHeight +"px";
}


function openWindow() {
	cv = window.open("resume.htm","cv","width=420,height=700,left=0,top=0");
	if (window.focus) {cv.focus();}
}


//window.onresize = fixWrapperSize;