function gotoPage(ddl){
	//alert(ddl.options[ddl.selectedIndex].value);
	if(ddl.selectedIndex!=0)
		window.location = ddl.options[ddl.selectedIndex].value;
}//end

