// JavaScript Document
/*
function showlayer(id)
{//show the layer(n) with the layer id
var layer_id;
var xshow="";
layer_id=id;
xshow="document.getElementById('Layer"+layer_id+"').style.visibility='visible';";
eval(xshow);
}

//hide the layer(n) with the layer id 
function hiddenlayer(id)
{
var layer_id;
var xhidden="";
layer_id=id;
xhidden="document.getElementById('Layer"+layer_id+"').style.visibility='hidden';";
eval(xhidden);
}
*/

function divshowhide(op,div_id){
	var opx=op;
	var divx=div_id;
	var opstr="";
	if(opx=="close")
		opstr="document.getElementById('"+divx+"').style.visibility='hidden';";
	else if(opx=="show")
		opstr="document.getElementById('"+divx+"').style.visibility='visible';";
	eval(opstr);
	}

function submenuC(){
	divshowhide("close","sub_menu0703");
	}






