
function id(id)
{
	if(id) { return document.getElementById(id); }
}

function popdiv(href)
{
	div = id('produse_pop');
	if(div)
		{
			return false;
		}
	else
		{
			bodyu = window.parent.document.getElementById('parent_body');
			div = window.parent.document.createElement('div');
			bodyu.appendChild(div);
			div.setAttribute('id', 'produse_pop');
			div.innerHTML = '<iframe id="product" src="' + href + '" width="734" height="460" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"></iframe>';
		}
}

function zoomImg(href)
{
	div = id('zoom_pop');
	if(div)
		{
			return false;
		}
	else
		{
			bodyu = window.parent.document.getElementById('parent_body');
			div = window.parent.document.createElement('div');
			bodyu.appendChild(div);
			div.setAttribute('id', 'zoom_pop');
			div.innerHTML = '<iframe id="product" src="' + href + '" width="472" height="530" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"></iframe>';
		}
}

