var setClassSwitch = function(element_o)
{
	element_o.className = (element_o.className.charAt(element_o.className.length - 1) == '1') ? element_o.className.replace(1, 0) : element_o.className.replace(0, 1);
};

var setLocationByParent = function(parent_o)
{
	var a_a = parent_o.getElementsByTagName('a');

	if (a_a)
	{
		document.location.href = a_a[0].href;
	}
};function setFlashObject(name_s, path_s, width_s, height_s)

{

         document.write('<object id="'+ name_s +'" type="application/x-shockwave-flash" data="'+ path_s +'" style="width: '+ width_s +'px; height: '+ height_s +'px;">\n');

         document.write('<param name="movie" value="'+ path_s +'" />\n');

         document.write('</object>\n');

}

