/************************************************************************************************************** 
* Program Name       : Javascript Program 
* Copyright Notice   : CopyRight (C) from 2010 Bernard Hodes Group
* Creation Date      : 23/03/2010 
* Programmer         : Mary Kwan 
* Function           : function roll_over() 
* Description        : This function set to switch the images when user roll over / out the mouse.
* Function           : function toggleDiv(element) 
* Description        : This function set to display the specific content by action
* 
* Date       By            Description 
* ---------  ------------- ------------------------------------------------ 
* 23/10/2010 Mary Kwan     Latest Version 
***************************************************************************************************************/ 

function Rover(img_name, img_src){
	document[img_name].src = img_src;
	toggleDiv(img_name);
}

function Rout(img_name, img_src){
	document[img_name].src = img_src;	
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

