﻿function showProductPhoto(pp) {
    popup = window.open("/popups/viewProductPhoto.aspx?pp="+pp, '', "width=500,height=500,status=yes");
}

function GetCustomFieldsString()
{
    $("dvCustomFields").innerHTML = "";
	sendRequest("PopulateCustomFields()", "GET", 
	            "/ProdusUtil.aspx?a=field&pID="+$("hProductID").value+"&cID="+$("hCategoryID").value, true); 
}

function PopulateCustomFields()
{
    $("dvCustomFields").innerHTML = 
        "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"color:#6A7A99;width:100%;\">"+
												"<tr>"+
													"<td class=\"bgW pt h20\" style=\"width:140px;text-align:right;padding-right:10px;\"><strong>Marca</strong></td>"+
													"<td class=\"bgW pt\">"+$("hBrandName").value+"</td>"+
												"</tr>"+
												    requester.responseText+
                                                "</table>";
}
