/***
* pages object
* @version 1.0 build 100
* @package pages
* @copyright (C) 2006 by RDG - All rights reserved!
**/

var pages={

	/**
	* @function
	* setPublishIcon(Object HTML Select Box)
	*
	* @description
	* Displays graphic for selected index of box
	*
	* @returns
	* Nothing
	**/

	setPublishIcon:function(obj){

		var img=document.getElementById("publish_icon");
		if(img){
			img.src=obj.selectedIndex==0 ? "images/icons/16x16/plain/check.gif" : "images/icons/16x16/plain/delete.gif";
		}
	}
};

