


<!-- 
function openWindow(URL,winName,features) {
	window.open(URL,winName,features);
}
//-->



<!-- 
function jump(site) {
	if (site != "") {
		parent.location.href=site
	}
}
//-->

<!-- 
function jump_replace(site) {
	if (site != "") {
		location.replace(site);
		return;
	}
}
//-->

<!-- 
function jump_new(site) {
	if (site != "") {
		newwin=window.open('','_blank','toolbar=1,resizable=1,scrollbars=1,location=1,menubar=1,status=1,directories=1');
		newwin.location=site
	}
}
//-->


<!-- 
function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}
//-->




<!-- 
function showPage(theURL,theSize){
	window.open(theURL,"",theSize);
}
//-->




