function loadincludes(){	
	if(document.getElementById('topinc')) clientSideInclude('topinc', '../includes/top_bar.htm');
	if(document.getElementById('topinc1')) clientSideInclude('topinc1', '../includes/left_panel.htm');
        if(document.getElementById('topinc1')) clientSideInclude('topinc2', '../includes/right_panel.htm');
	if(document.getElementById('topinc_admin')) clientSideInclude('topinc_admin', '../includes/admin_top.htm');

}

function loadincludes1(){	
	
}

function productViewInstruction(name,id){
	if(name == "enlarge"){
		document.getElementById("tr_enlarge_"+id).style.display = "block"
	} else if(name == "cart"){
		document.getElementById("tr_cart_"+id).style.display = "block"
	}
}

function productHideInstruction(name,id){
	if(name == "enlarge"){
		document.getElementById("tr_enlarge_"+id).style.display = "none"
	} else if(name == "cart"){
		document.getElementById("tr_cart_"+id).style.display = "none"
	}
}

