// JavaScript Documentfunction pageWidth() {return window.innerWidth != null? window.innerWidth: document.body != null? document.body.clientWidth:null;}function pageHeight() {return window.innerHeight != null? window.innerHeight: document.body != null? document.body.clientHeight:null;}function openExtLink(url) {	var nH = pageHeight()	- 200;	var nW = pageWidth() - 200;		wExtLink=window.open(url,'externalLink','width=' + nW + ',height=' + nH + ',location=1,toolbar=1,menubar=1,directories=1,status=1,resizable=1,scrollbars=1');	wExtLink.focus();}function googleTrack(tag){	pageTracker._trackPageview(tag);}
