/* 
 Burr Johnson .com Scripts File
*/	
function winWidth() {
	if (window.innerWidth) return window.innerWidth;
	else if (document.documentElement) return document.documentElement.offsetWidth;
	else if (document.body.clientWidth) return document.body.clientWidth;
	}
function winHeight() {
	if (window.innerHeight) return window.innerHeight;
	else if (document.documentElement) return document.documentElement.offsetHeight;
	else if (document.body.clientHeight) return document.body.clientHeight;
	}
function on(img) {
    document[img].src = eval(img+'on').src;
    }
function off(img) {
    document[img].src = eval(img+'off').src;
    }

function openNewSmWindow(url){
window.open(url,"newsmwindow","width=500,height=400");
}
function openNewLgWindow(url){
window.open(url,"newlgwindow","width=800,height=800,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes");
}
                