function furniture_view_cat(cat_id,id){
window.location = "furniture_cat.php?cat_id=" + cat_id + "&id="+ id;
}
function lighting_view_cat(cat_id,id){
window.location = "lighting_cat.php?cat_id=" + cat_id + "&id="+ id;
}
function accessory_view_cat(cat_id,id){
window.location = "accessory_cat.php?cat_id=" + cat_id + "&id="+ id;
}
function seasonal_view_cat(id){
window.location = "seasonal.php?id=" + id;
}
function build_menu(active_cat,subcat){
var gallery_selected = "
gallery";
var gallery = "";
var about_selected = "about";
var about = "";
var furniture_selected = "furniture";
var furniture = "";
var lighting_selected = "lighting";
var lighting = "";
var accessory_selected = "accessories";
var accessory = "";
var seasonal_selected = "seasonals";
var seasonal = "";
var press_selected = "press";
var press = "";
var news_selected = "news";
var news = "";
var contact_selected = "contact";
var contact = "";
var book_selected = "books";
var book = "";
var pricelist_selected = "prices";
var pricelist = "";
var services_selected = "services";
var services = "";
var str_menu = "";
var content = document.getElementById("leftmenu_content");
content.innerHTML = str_menu;
}
function goto_page(url,section,subcat){
build_menu(section,subcat);
var content = document.getElementById("content");
content.src = url;
}