function more(myPage, windowName, myWidth, myHeight, resize, scroll){
	var time=new Date();
	LeftPosition= (screen.width*0.5)-(myWidth*0.5);
	TopPosition= (screen.height*0.4)-(myHeight*0.5);
	if(windowName.substring(0, 1)=="~")windowName+=time.getHours()+''+time.getMinutes()+''+time.getSeconds();
	window_var = window.open(myPage, windowName, 'width='+myWidth+',height='+myHeight+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=' + resize);
}

function show_pic(pic, layout){
	document.getElementById('big'+layout).src='/images/see_our_food/' + pic + '.jpg';
	document.getElementById('frame'+layout).className='visible';
}

function hide_pic(){
	document.getElementById('frame_w').className='hidden';
	document.getElementById('frame').className='hidden';
}

function ie6_css(){
	if (navigator.userAgent.indexOf("MSIE 6") > 0){
		document.getElementById('wrapper').style.paddingLeft = 0;
	}
}

window.onload = ie6_css;
