// JavaScript Document
function zoom(img)
{
  var width="600", height="600";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("","msgWindow", styleStr);
  var head = '<head><title>Blesk Jewelry</title></head>';
  var body = '<body bgcolor="#FFFFFF"><center><img src="' +  img + '"></body>';
  msgWindow.document.write(head + body);	
}

var products = [
	['Orange', 'Beautiful Orange full with diamonds of 1ct brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Apples', 'fdsf asfd Dragonfly brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Bird', 'ggggggg sdfgstger4 Dragonfly brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Frog', 'Frog fkldjf kdkdk brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Bird', 'ggggggg sdfgstger4 Dragonfly brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Frog', 'Frog fkldjf kdkdk brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Bird', 'ggggggg sdfgstger4 Dragonfly brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Frog', 'Frog fkldjf kdkdk brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Bird', 'ggggggg sdfgstger4 Dragonfly brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Frog', 'Frog fkldjf kdkdk brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Bird', 'ggggggg sdfgstger4 Dragonfly brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Frog', 'Frog fkldjf kdkdk brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.'],
	['Frog', 'Frog fkldjf kdkdk brooch with Pink Sapphire wings and Diamond trunk set in 18kt. White Gold - 23gr. / Dia - 0.65 cts.']

];

var actualproduct = 1;
	
function changeProduct2(id) {
	document.images["mainimage"].src = "img/brooches/2/" + (id) + ".jpg";
	document.getElementById("maintitle").innerText = products[id-1][0];
	document.getElementById("maindescription").innerText = products[id-1][1];
	actualproduct = id;

}
function changeProduct(type, id) {
	document.getElementById("contentframe").src = type + "/" + id + ".html";
	

}