



	/** =================================================================== 
	*
	* insao-hive-iwm
	* @copyright 		(c) 2007-2008 PR23 Limited. All Rights Reserved
	* @author 			PR23
	* 
	* @category 		INSAO HIVE 6.0.0.1
	* @package 			insao_hive_local/
	* @subpackage 		www/sbin/portlets/
	* @name				formplusarticles
	*
	* -------------------------------------------------------
	*
	*  FORM PLUS ARTICLES PORTLET JS
	*
	** =================================================================== */
	
	
	/***********************************************************************/
	/**
	*  Change the form security code
	*
	* @param (str)	imgID
	*
	* @return null
	*
	**/
	function formplusarticles_changeCode(imgID) {
		
		var dlimg 		=	document.getElementById(imgID);
		var ranrdnum 	= 	Math.floor(Math.random() * 1534234) +1;
		
		if(dlimg != null) {
			dlimg.src = dlimg.src + '&new='+ranrdnum+''
		}
	}
