function CatJump(URL) {
var ImgPath='Image_Files/0083.jpg';
pic.src=  URL.options[URL.selectedIndex].value;
	/*if (URL.options[URL.selectedIndex].value != "") self.location.href = URL.options[URL.selectedIndex].value;
	return true;*/
}

function JumpToURL(URL) {
	if (URL.options[URL.selectedIndex].value != "") self.location.href = URL.options[URL.selectedIndex].value;
	return true;
}

var remote = null;
function remoteStartOpen(despage,t,l,w,h) {
    remote = window.open('', '',"top=" + t + ",left=" + l + ",width=" + w + ",height=" + h + ",resizable=0,scrollbars=no");
    if (remote != null) {
        if (remote.opener == null) {
        remote.opener = self;
        }
//        "top=70,left=200,width=400,height=180,resizable=0"
    remote.location.href = despage;
    }
}



