function getSelectValue( selectObject )
{
	return selectObject.options[selectObject.selectedIndex].value;
}

function go_medservice_up( selectObject, razdel )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/" + razdel + "/?id="+id;
	}
}
function go_operation_up( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/operations/?id="+id;
	}
}

function go_gallery_operation( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/gallery/?vf[operation_id]="+id;
	}
}

function go_gallery_cosm_operation( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/gallery_cosm/?vf[cosm_id]="+id;
	}
}

function go_gallery_stom_operation( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/gallery_stom/?vf[stom_id]="+id;
	}
}

function go_gallery_surgeon( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/gallery/?vf[surgeon_id]="+id;
	}
}

function go_article_operation( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/articles/?vf[operation_id]="+id;
	}
}

function go_faq_operation( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/faq/?vf[spec_op_id]="+id;
	}
}

function go_faq_surgeon( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/faq/?vf[surgeon_id]="+id;
	}
}

function go_video_operation( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/video/?vf[operation_id]="+id;
	}
}

function go_stars_operation( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/stars/?vf[operation_id]="+id;
	}
}


function go_gallery_implant( selectObject )
{
	id = getSelectValue( selectObject );
	if ( id != "")
	{
		location.href = "/gallery_implants/?vf[implant_id]="+id;
	}
}
