// JavaScript Document
 function Fun_change_color(id,active){
   if(active==1){ document.getElementById(id).bgColor='#FF9900';}
   else{document.getElementById(id).bgColor='#333333';}
 }
 function openwindows(url)
{
    window.open(url, "",
		"width=460,height=150,scrollbars=0,left=" +
		((screen.width - 460)/2) + ",top=" + ((screen.height - 150)/2) )
}