//get element by ID shortcut
function $(theBtnId) {
	return document.getElementById(theBtnId);
}
//widow onload functions
window.onload = function() {
	//if browser does not support the dom then abort
	if (!document.getElementById) return false;
	$("windowCloseBtn").innerHTML = '<p><span onclick="window.self.close();">&nbsp;Close Window&nbsp;<\/span><\/p>';
	//IE browser quotes fix
	if (!window.ActiveXObject) return false; //If browser is not Windows Explorer then abort
	//quote tags
	quoteTags = document.getElementsByTagName('q');
	for (i=0; i<quoteTags.length; i++) {
		quoteTags[i].innerHTML = "&#8216;" + quoteTags[i].innerHTML + "&#8217;";
	}
}
