function coppley_body_init( _left_menu_type )
{

	_header = [
				['Home','index.php'],
				//['News &amp; Information','news_information.php'],
				['Careers','ac_careers.php'], 
				['Contact','contact.php']
			];
	
	_menu = [
				['coppley-menu-collection','coppley_collection.php','1'],
				['coppley-menu-services','coppley_services.php','2'],
				['coppley-menu-about','about_coppley.php','3'],
				['coppley-menu-buying','buying_from_coppley.php',''],
				['coppley-menu-retailer','retailer/index.php','']
			];

	if( _left_menu_type == "CC" )
	{
		_left_menu = [
					['Overview','coppley_collection.php']
					['List by Brand','cc_lbb_overview.php']
					['List by Product','cc_lbp_overview.php']
					['Where to Order','cc_wheretoorder.php']  
				];
	}

	if( _left_menu_type == "OS" )
	{
		_left_menu = [
					['Overview','coppley_services.php']
					['In-Stock','os_instock.php']
					['Custom available in 7 days','os_7days.php']
					['Customer Care','os_customercare.php']  
				];
	}
			 
	_footer = [
				['Home','index.php'],
				['The Coppley Collection','coppley_collection.php'],
				['Our Services','coppley_services.php'],
				['About Coppley','about_coppley.php'],
				['Buying from Coppley','buying_from_coppley.php'],
				['Retailer Zone','retailer/index.php'],
				['Careers','ac_careers.php'],
				['Contact Coppley','contact.php'],
				['Terms of Use','legal_coppley.php']
			];

	_delimiter = "";
	
	_header.each(
		function( node ){
			$('body-coppley-header-container').innerHTML += ( _delimiter + '<a href="' + _http + node[1] + '">'+node[0]+'</a>' );
			_delimiter = " | ";
		}
	);
	
	/*
	_menu.each(
		function( node ){
			Event.observe( node[0], 'mouseover',function(event)
			{ 
				$(node[0]).className = node[0] + "-over"; 
				if( node[2] ){ exM(m1,'m1mn'+node[2],node[0],event); }
			},false);
			Event.observe( node[0], 'mouseout',function()
			{ 
				$(node[0]).className = node[0] + "-out"; 
				if( node[2] ){ coM(m1,'m1mn'+node[2]); }
			},false);
			Event.observe( node[0], 'click',function(){ window.location.href = _http + node[1]; },false);
			
		}
	);
	*/
	
	_delimiter = "";
	
	_footer.each(
		function( node ){
			$('body-coppley-footer-container').innerHTML += ( _delimiter + '<a href="' + _http + node[1]+'">'+node[0]+'</a>' );
			_delimiter = " | ";
		}
	);
	

	
}

function popupLink(url, name, attribs)
{
  popupWin = window.open(url, name, attribs);
  popupWin.opener.top.name = "opener";

  if (popupWin.focus) popupWin.focus();

}

function popupLinkNoWidgets(url, name, width, height)
{

  if (document.body)
     w = document.body.clientWidth;
  else if(window.innerWidth)
     w = window.innerWidth;
  else
    w = 750;
    
  if (document.body)
     h = document.body.clientHeight;
  else if(window.innerHeight)
     h = window.innerHeight;
  else
    w = 550;
    
  if (window.screenLeft)
    x = window.screenLeft;
  else if (window.screenX)
    x = window.screenX;
  else
    x = 0;
    
  if (window.screenTop)
    y = window.screenTop;
  else if (window.screenY)
    y = window.screenY;
  else
    y = 0;
  
  
  posx = Math.max(0, x + (w - width)/2);
  posy = Math.max(0, y + (h - height)/2);
  
  
  offset_attribs = "left=" + posx + ",top=" + posy + ",screenX=" + posx + ",screenY=" + posy + ",";

  popupLink(url, name, offset_attribs + 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height);
}  