<!--
// Define the URL for header and footer's hyperlinks.
var URL_OOCL = "http://www.oocl.com";
var URL_OOILGROUP = "http://www.ooilgroup.com";
var URL_E_SUBSCRIPTION = "http://www.oocl.com/eng/esubscription";
var URL_CONTACT_US = "http://www.oocl.com/eng/contactus";
var URL_TERMS_OF_USE = "http://www.oocl.com/eng/termsofuse";
var URL_PRIVACY_AND_SECURITY = "http://www.oocl.com/eng/privacyandsecurity";
var URL_ONLINE_SECURITY = "http://www.oocl.com/eng/onlinesecurity";
var URL_COPYRIGHT = "http://www.oocl.com/eng/copyright";




// Define the URL for the image folder
var URL_IMAGE = "http://www.oocl.com/oocl/images/";


// Define the URL for the stylesheet folder
var URL_CSS = "http://www.oocl.com/oocl/style/";


// Define the URL for javasript file include folder
var URL_INC = "http://www.oocl.com/oocl/includes/";


//This function determine how to open a URL in the header or footer's hyperlinks. 
function openLink(url){
	if(window.opener && window.opener.closed == false){
		window.opener.location = url;
		window.opener.focus();
	}
	else{
		SharedWindow = window.open(url,"SharedWindow");
		SharedWindow.focus();
	}
}
-->
