//----------------------------------------------------------------------
// Series
function jumpSeriesInfo( series_id, catalog_id ){
	if( catalog_id != undefined ){
		location.href = './detail.php?sid=' + series_id + '&tcid=' + catalog_id;
	} else {
		location.href = './detail.php?sid=' + series_id;
	}
}

//----------------------------------------------------------------------
// Company
function jumpCompInfo( company_id ){
	location.href = './company.php?pid=' + company_id;
}

//----------------------------------------------------------------------
// Floor
function jumpFloorInfo( floor_id, category_id, type ){
	if( type == "" || type == 0 ){
		type_t = "catalog";
	} else {
		type_t = "item";
	}
	if( category_id != "" || category_id != 0 ){
		location.href = './category.php?fn=' + floor_id + '&gid=' + category_id + '&md=' + type_t
	} else {
		location.href = './floor.php?fn=' + floor_id;
	}
}