//main Navigation 
home="/index.php";
about="/about/index.php";
service="/service/index.php";
project="/project/index.php";
contact="/contact/index.php";
bulletine="/bulletine/list.php";

//about us
ceo = "/about/index.php";
profile = "/about/profile.php";
organization = "/about/organization.php";
photo = "/about/photo.php";
//service
sproject="/service/index.php";
air="/service/air.php";
ocean="/service/ocean.php";
custom="/service/custom.php";
intermodal="/service/intermodal.php";
distribution="/service/distribution.php";
//project
perfomance="/project/index.php";
gproj="/project/gproj.php";
eproj="/project/eproj.php";
casestudy="/project/casestudy.php";
//contact us
map="/contact/index.php";
offices="/contact/offices.php";
//bulletine
news="/news/list.php";
notice="/bulletine/list.php";


function GoUrl(name, win) {	
	if (eval(name) == "") {
		alert("sorry.");
		return;	
	} else {
		if (win == null) {
			document.location.href = eval(name);
		} else {
			window.open(eval(name), win);
		}
	}
}

function ImgPreLoad(imgTitle, imageNum) {
		imageNum++;
		rollOver = new Array(imageNum);
		rollOut = new Array(imageNum);
		for (j = 1; j <= imageNum; j++) {
			if (j < 10) {
				retmp = "_0";
			} else {
				retmp ="_";
			}
			rollOver[j] = new Image();
			rollOver[j].src = imgTitle + retmp + j + "_on.gif";
			rollOut[j] = new Image();
			rollOut[j].src = imgTitle + retmp + j + ".gif";
		}
	}
function imgOver(Number) {
		if (rollOver[Number] != null) {
			document["w"+Number].src = rollOver[Number].src;
		}
	}

function imgOut(Number) {
		if (rollOver[Number] != null) {
			if (Number != _MCurrentOn) {
				document["w"+Number].src = rollOut[Number].src;
			}
		}
	}

