﻿// JScript File

function openSendSMS(id) 
{
  var w = 450;
  var h = 480;
  wleft = (screen.width - w) / 2;
  wtop = (screen.height - h) / 2;
  if (wleft < 0) {
    w = screen.width;
    wleft = 0;
  }
  if (wtop < 0) {
    h = screen.height;
    wtop = 0;
  }

 var fer = window.open("recomanda_prin_sms.aspx?id="+id, 
			"Recomanda_produs_prin_SMS",
			"width=" + w + ", height=" + h + ", " + "left=" + wleft + ", top=" + wtop + ", " + "location=no,scrollbars=yes,toolbar=no,status=no,directories=no,menubar=no,resizable=no");
 fer.resizeTo(w, h);
 fer.moveTo(wleft,wtop);
 fer.focus();
}  

function openPicture(fileName)
{
    window.open("imagine.aspx?fileName=" + fileName,
                "Imagine",
                "location=no,scrollbars=yes,toolbar=no,status=no,directories=no,menubar=no,resizable=no");
}
