<!--

function openSiteWindow(url, width, height) {
	var winName = "popup";
	if(width == null) width=800;
	if(height == null) height=600;
	var features = "menubar=no,location=no,personalbar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable";
	window.open(url,winName, features);
}

//-->