function click_oferta(id)
{
	if (document.getElementById('oferta_'+id).style.display == '')
	{
		document.getElementById('oferta_'+id).style.display = 'none';
	}
	else document.getElementById('oferta_'+id).style.display = '';
}

function galeria_preview(id_img)
{
	window.open("gal_preview.php?id_img=" + id_img,"galv","width=700,height=500");
}

function product_preview(id_img,name)
{
	window.open("product_preview.php?id_img=" + id_img,name,"scrollbars=1,width=700,height=500");
}

function photos_preview(id_img,prod_index)
{
	id_img = 0;
	/*if (window.showModalDialog)
	{
		window.showModalDialog("photos_preview.php?id_img=" + id_img + "&prod_index=" + prod_index,"CSW-photo","dialogWidth:700px;dialogHeight:500px");
	}
	else
	{*/
		window.open("photos_preview.php?id_img=" + id_img + "&prod_index=" + prod_index,'a',"scrollbars=1,width=700,height=500");
	//}
}


function min_preview(id_img,prod_index)
{
	if (window.showModalDialog)
	{
		window.showModalDialog("min_preview.php?id_img=" + id_img + "&prod_index=" + prod_index,"name","dialogWidth:700px;dialogHeight:500px");
	}
	else
	{
	  window.open('min_preview.php?id_img=' + id_img + "&prod_index=" + prod_index,'name','height=500,width=700,toolbar=no,directories=no,status=no,continued from previous linemenubar=no,scrollbars=no,resizable=no,modal=yes');
	}
	alert("aa");
}

