var timerId=0;
var onLoadFlag=0;
function about(id,nn){
//      alert(id);
      window.open('/cgi/shop?load=about&id='+id, 'about', 'scrollbars, resizable, width=650, height=450');
}
function onLoado(){
//	alert("loaded.");
	onLoadFlag=1;
}

function hideLayerDelayed(ids){
	if(onLoadFlag){
		timerId=setTimeout("hideLayer(1)", "6000"); 	
	}
}
function hideLayer(ids){
	//alert("hiding..");
	if(onLoadFlag){
		layer1.style.visibility='hidden';
	}
}
function showLayer(ids){
if(onLoadFlag){
clearTimeout(timerId);
timerId=setTimeout("hideLayer(1)", "6000"); 	
//alert("showing..");
	layer1.style.visibility='visible';
}
}


