// define global site functions here - save some load time
function wopen(url, name, w, h) {
	w += 32;
	h += 32;
	var win = window.open(url, name, 'width=' + w + ', height=' + h + ', location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=yes');
	win.resizeTo(w, h);
	win.focus();
}
