function month_picker_jump( url_value )	{
	document.location = url_value;
	return	false;
}

function nav_jump( com_id, item_id )	{
	if(document.getElementById(item_id).checked == false){

	}
}

function nav_jump( step_value )	{
	var input = document.createElement("input");
	var com_in = '';
	var com_id = 0;
	 document.getElementById("nav_step").value = step_value;
	for	( i=1; i<11; i++ )	{
		com_in = "c"+i;
		if(document.getElementById(com_in)){
			if(document.getElementById(com_in).checked){
				input = document.createElement("input");
				com_id = document.getElementById(com_in).value; 
				input.setAttribute("type", "hidden");
				input.setAttribute("name", "ids["+com_id+"]");
				input.setAttribute("id", "nav"+com_id);
				input.setAttribute("value", com_id);
				document.getElementById("nav").appendChild(input);
			}else{
				/*com_in = "comp"+com_id;
				if(document.getElementById(com_in).value){
					document.getElementById(com_in).value = -1;
					com_in = "nav"+com_id;
					document.getElementById(com_in).value = -1;
				}*/
			}
		}
	}
	
	 document.forms["nav"].submit();
	 
 return false;
 }
 
 function details_jump(url_value)	{
	 document.forms["nav_pass_form"].action = url_value;
	 document.forms["nav_pass_form"].submit();
	 
 return false;
 }
 
  function pics_jump(url_value)	{
	 document.getElementById("prop_image").src = url_value;
	// document.getElementById("prop_image").width = 255; 
  return false;
 }