
function showSite(sSiteURL) {
	var width = screen.width; 
	var height = screen.height; 
	var left = (screen.width / 2) - ((width + 10) / 2); 
	if (left < 0)
		left = 0;
	var top = (screen.height / 2) - ((height + 55) / 2);
	if (top < 0)
		top = 0;
	
	var sProps = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=" + left + ",top=" + top + ",width=" + width + ",height=" + height;
	
	var site = window.open(sSiteURL,"dummymicrosite", sProps);
	site.focus();
}

