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

