//pop windows
function openWin(src, width, height) {
	var w = 800, h = 600;
	if (document.all || document.layers) {
		w = screen.availWidth;
		h = screen.availHeight;
	}
	var leftPos = (w-width)/2, topPos = (h-height)/2;
	window.open(''+src+'','','width='+width+',height='+height+',toolbar=no,status=yes,menubar=no,scrollbars=no,resizeable=no,top=' + topPos + ',left=' + leftPos);
	void(0);
}

function getURL(thisLocation) {
	window.location.href = thisLocation;
}