/*
 * popup a product file window using its representation URL:
 */
function popupWinProductFile(strUrl)
{
  var win = window.open(strUrl, "winPopup", "scrollbars=0,toolbar=0,width=400,height=430,resizable=1");
  if(win != null)
  {
    win.focus();
  }
//
  return;
}

/*
 * popup a product file window using its representation URL:
 */
function pf(strUrl)
{
	popupWinProductFile(strUrl);
//
  return;
}
