function SearchFocus() {
	container = document.getElementById('searchbg');
	container.style.backgroundImage = 'url(\'common/searchbox_active.gif\')';
}
function SearchBlur() {
	entry = document.getElementById('searchbox');
	container = document.getElementById('searchbg');
	if(entry.value == '') {
		container.style.backgroundImage = 'url(\'common/searchbox_inactive.gif\')';
	} else {
		container.style.backgroundImage = 'url(\'common/searchbox_active.gif\')';
	}
}

function PageLoad() {
	SearchBlur();
}

var newwindow;
function PopUp(url, width, height) {
	if(width == undefined) width = 828;
	if(height == undefined) height = 580;
	newwindow=window.open(url,'name','height=' + height + ',width=' + width + ',scrollbars=yes');
	if(window.focus) {newwindow.focus();}
}

