// JavaScript Document


// Hide-Show notes

function hideDiv(div_id) { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById(div_id).style.display = 'none'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.div_id.display = 'none'; 
} 
else { // IE 4 
document.all.div_id.style.display = 'none'; 
} 
} 
} 

function showDiv(div_id) { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById(div_id).style.display = 'block'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.div_id.display = 'block'; 
} 
else { // IE 4 
document.all.div_id.style.display = 'block'; 
} 
} 
}

//load photos

function loadphoto(photoname, dir) { 

document.getElementById('photo1').innerHTML = '<img class="photo_border_inside" src="products_img/'+photoname+'" alt="" />';
} 


