<!--

function identifyproduct(product){
var current
if (product == 'curtains') {
current = "<div align=\"center\"><h2>Curtains for your Home</h2><img height=\"250\" width=\"250\" src=\"images/index/curtains.jpg\"></div>"
} else if (product == 'carpets') {
current = "<div align=\"center\"><h2>Flooring for your Home</h2><img height=\"250\" width=\"250\" src=\"images/index/carpets.jpg\"></div>"
} else if (product == 'blinds') {
current = "<div align=\"center\"><h2>Blinds for your Home</h2><img height=\"250\" width=\"250\" src=\"images/index/blinds.jpg\"></div>"
} else if (product == 'wallpapers') {
current = "<div align=\"center\"><h2>Wallpapers for your Home</h2><img height=\"250\" width=\"250\" src=\"images/index/wallpapers.jpg\"></div>"
} else if (product == 'curtainpoles') {
current = "<div align=\"center\"><h2>Curtain Poles & Tracks for your Home</h2><img height=\"250\" width=\"250\" src=\"images/index/poles.jpg\"></div>"
}
viewdetail(current);
}

function viewdetail(current){
if (document.getElementById)
document.getElementById("mainpageinfo").innerHTML= current
else
mainpageinfo.innerHTML= current
}

function hidedetail(){
if (document.getElementById)
document.getElementById("mainpageinfo").innerHTML='<p class=\"mainpagestyle2\">We are the Soft Furnishing Specialists of Coventry and Warwickshire providing:</p><blockquote><h2>&bull; Curtains</h2><h2>&bull; Carpets &amp; Flooring</h2><h2>&bull; Blinds</h2><h2>&bull; Wallpapers</h2><h2>&bull; Curtain Poles</h2></blockquote>'
else
mainpageinfo.innerHTML='<p class=\"mainpagestyle2\">We are the Soft Furnishing Specialists of Coventry and Warwickshire providing:</p><blockquote><h2>&bull; Curtains</h2><h2>&bull; Carpets &amp; Flooring</h2><h2>&bull; Blinds</h2><h2>&bull; Wallpapers</h2><h2>&bull; Curtain Poles</h2></blockquote>'
}
//-->