/* Creation date: 28-Feb-06 */
function showNote(sessId,saleId,hsize,vsize) {
  url = "f?p=spesadove:shownote:" + sessId + ":::999:P999_SALE_ID:" + saleId
  w = open(url, "winLov","Scrollbars=1,resizable=1, width=" + hsize + ",height=" + vsize);
  if (w.opener == null)
  w.opener = self;
  w.focus();
  }
function pasteKey(searchKey) {
  setValue('P1_COSA',searchKey);
  }
function showPicture(sessId,imageId,hsize,vsize) {
  url = "f?p=spesadove:showpict:" + sessId + ":::1000:P1000_IMAGE_ID:" + imageId
  w = open(url, "winLov","Scrollbars=1,resizable=1, width=" + hsize + ",height=" + vsize);
  if (w.opener == null)
  w.opener = self;
  w.focus();
  }
function showTimeTable(sessId,storeId,hsize,vsize) {
  url = "f?p=spesadove:showtimetable:" + sessId + ":::1001:P1001_STORE_ID:" + storeId
  w = open(url, "winLov","Scrollbars=1,resizable=1, width=" + hsize + ",height=" + vsize);
  if (w.opener == null)
  w.opener = self;
  w.focus();
  }

