function glow(what, url) {
document.images[what].src = url;
}

function shade(what, url) {
document.images[what].src = url;
}

function miGlow(item) {
	glow('mi_'+item, style1_path+'/i/menu/l1-bullet.gif');
}
function miShade(item) {
	shade('mi_'+item, style1_path+'/i/cd.gif');
}

function niGlow(item) {
	glow('ni_'+item, style1_path+'/i/navi/l2-bullet-glow.gif');
}
function niShade(item) {
	shade('ni_'+item, style1_path+'/i/navi/l2-bullet.gif');
}

function naiGlow(item) {
	glow('nai', style1_path+'/i/navi/l2-right-glow.gif');
}
function naiShade(item) {
	shade('nai', style1_path+'/i/navi/l2-right.gif');
}

function winpopup(theURL,winName,features) {
photo = window.open(theURL,winName,features);
}

function showphoto(pic_url) {
pcont = window.open("","photo","width=600,height=394");
pcont.document.open();
pcont.document.write("<html><head><title>Photo</title></head><body leftmargin='0' topmargin='0' marginheight='0' marginwidth='0' bgcolor='#FFFFFF'><img src='"+pic_url+"' width='600' height='394' alt=''><br></body></html>");
pcont.document.close();
}