// JavaScript Document

function displaylargeimg(id,imgcat, alttext)
{
  //alert(id+"-"+imgcat+"-"+alttext);//french-doors-01-white-large.jpg
  var limg="/images/french-doors-slider/french-doors-"+id+"-"+imgcat+"-large.jpg";
  //alert(limg);
  document.getElementById("largeimg").src=limg;
  //var limgalt="";
  var wincon=getcontent(id);
  //var modimgcat=imgcat.replace("-"," ");
  //modimgcat=modimgcat.substring(0,1).toUpperCase();
  
  //limgalt= capitalizeMe(modimgcat);
  document.getElementById("largeimg").alt=alttext;
  document.getElementById("win_headline").innerHTML =alttext;
  document.getElementById("win_text").innerHTML =wincon;
  
  
}
function getcontent(cid)
{
	 var content="";
	 if(cid=='01')
	 {
		 var content="Safestyle UK's high quality double glazed French doors come with latest security features and locking mechanisms, high performance glazing that will not only help you save energy by reducing heat loss, but the high clarity glass will actually allow more light in to your home.";
	}
	if(cid=='02')
	 {
		 var content="French doors with Oak wood effect give you that nice warm traditional feel, and that real-looking timber effect is one of several available from the Safestyle range of wood effect profiles. Gold handles will complement Oak nicely, or you can choose from our range of door furniture.";
	}
	if(cid=='03')
	 {
		 var content="Your new French doors will be made-to-measure to fit your property perfectly. Choose from various arch options, each tailored in our arch manufacturing department to suit your home. As well as plain energy saving glass, there are various textured glass and lead designs.";
	}
	if(cid=='04')
	 {
		 var content="Safestyle's gold handles are just one of the options available for French door furniture. You can also choose chrome, black or white, but all use the latest in security technology and multi-point locking systems, giving you peace of mind as well as an attractive appearance.";
	}
	if(cid=='05')
	 {
		 var content="This central diamond bevel gives a striking ornamental feature to this set of arched French doors, but you can add your own choice from our huge range of bevel, lead and textured glass designs. Your own unique combination will add a personal touch to your home.";
	 }
	if(cid=='06')
	 {
		 var content="These Safestyle French doors have been fitted with one of our special textured glass designs to give a distinctive look as well as privacy. You can choose from a wide variety of glazing to get the right look and specific level of privacy that you require.";
	}
	if(cid=='07')
	 {
		 var content="Safestyle's Rosewood profile gives a deep traditional timber look, and is one of the realistic wood effects that we have developed over the years. The key locking mechanisms will also ensure you feel safe in your home with the latest multi-point locking technology.";
	}
	if(cid=='08')
	 {
		 var content="There are various types of Safestyle French door furniture, such as these gold handles, the letterbox and door numbers, tailoring your doors to suit your home. The arches themselves, as with all our windows and doors, are made-to-measure specifically for your home.";
	}
	if(cid=='09')
	 {
		 var content="Whether arched, round, square, modern or traditional, Safestyle windows are entirely made-to-measure to suit the needs of your property. Arched windows are specially made in our manufacturing facility for a perfect fit. And with energy saving glass it's the perfect window!";
	}
	if(cid=='10')
	 {
		 var content="Make a statement with stunning colours and leads with Safestyle UK windows and doors. Contemporary or traditional, Safestyle UK's range of beautiful coloured glass ensures your home leaps out from the crowd. Choose from hundreds of designs and patterns.";
	}
	if(cid=='11')
	 {
		 var content="What better way to make full use of the space your bay windows provide than with Safestyle UK's distinctive profiles and energy saving glass. Let more light in to your home and see more of the outside, while also cutting heating bills with our energy saving glass.";
	}
	if(cid=='12')
	 {
		 var content="Security for peace of mind is one of our top priorities, and at Safestyle we make sure all our windows and doors have the latest, robust multi-point locking systems. Fire escape hinges are also available, so you can feel safe and secure in your home."
;
	}
	return content;
}
function capitalizeMe(value) {
        val = value;
        newVal = '';
        val = val.split(' ');
        for(var c=0; c < val.length; c++) {
                newVal += val[c].substring(0,1).toUpperCase() +
val[c].substring(1,val[c].length) + ' ';
        }
       return newVal;
}

