// Show/Hide DIV layers

function showDIV(nameDIV,fileName) {
document.getElementById(nameDIV).style.visibility = "visible";
}

function hideDIV(nameDIV) {
document.getElementById(nameDIV).style.visibility = "hidden";
}


// Gallery Flash System

function showDIVgallery(noPics) {
document.getElementById('gallery').style.visibility = "visible";
document.getElementById('galleryContent').innerHTML = "<iframe src =\"gallery-loader.asp?noPics="+noPics+"\" width=\"450\" height=\"300\" scrolling=\"no\" border=\"0\"></iframe>";
}

function gallery(noPics) {
var strString = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width=450 height=300><param name=movie value="gallery/gallery.swf?noPics='+noPics+'"><param name=quality value=high><param name="wmode" value="transparent"><embed src="gallery/gallery.swf?noPics='+noPics+'" quality=high wmode="transparent" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width=450 height=300></embed></object>';
document.write (strString);
}


// Testimonial Letters

function showDIVtestimonials(imgName) {
document.getElementById('gallery').style.visibility = "visible";
document.getElementById('galleryContent').innerHTML = "<img src='images/"+imgName+"' border='0'>";
window.location = "#";
}
