function resizeIframeHeight(nHeight) {
	var iframe = document.getElementById('iframe_jewellery');
	//nHeight = parseInt(nHeight) + 700;
	iframe.setAttribute('height', nHeight);
	iframe.style.height = nHeight+"px";
	iframe.setAttribute('offsetHeight', nHeight); 
}


