//flash script
function homeFlash() {
var strString = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width=603 height=434><param name=movie value="images/home-page-image.swf"><param name=quality value=high><param name="wmode" value="transparent"><embed src="images/home-page-image.swf" quality=high wmode="transparent" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width=604 height=434></embed></object>';
document.write (strString);
}

function showDIV(nameDIV,fileName) {
document.getElementById(nameDIV).style.visibility = "visible";
document.getElementById(nameDIV+'Content').innerHTML = "<img src=\"images/"+fileName+".jpg\" border=\"0\">";
}

function showDIVshowroom(range,noPics) {
document.getElementById('showroom').style.visibility = "visible";
document.getElementById('showroomContent').innerHTML = "<iframe src =\"vshowroom-loader.asp?range="+range+"&noPics="+noPics+"\" width=\"569\" height=\"320\" scrolling=\"no\" border=\"0\"></iframe>";
}

function vshowroom(range,noPics) {
var strString = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width=569 height=320><param name=movie value="virtual-showroom/virtual-showroom.swf?range='+range+'&noPics='+noPics+'"><param name=quality value=high><param name="wmode" value="transparent"><embed src="virtual-showroom/virtual-showroom.swf?range='+range+'&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=569 height=320></embed></object>';
document.write (strString);
}


function hideDIV(nameDIV) {
document.getElementById(nameDIV).style.visibility = "hidden";
}