
function reload_frames(cc) {
	var new_href = parent.basket.location.href + '&cc=' + cc + '&action=show';
	parent.basket.location.href= new_href;
	document.currency_form.submit();
}

function win_open(w,h,picture) {
        var winArg= "resizable=yes, width=" + w + ", height=" + h + ", left=10,top=10";
        newWin = window.open(picture,"newWin",winArg);
        var x = w + 33;
        var y = h + 45;
        newWin.window.resizeTo( x,y );
        newWin.focus();
}

  function showtext(ix,txt_len)  {
          var w = Math.floor(txt_len / 2);
          var t = Math.floor(txt_len / 4);
//		  alert(w + ' : ' + t);
		  w = (w<500) ? 350 : w;
          t = (t<500) ? 250 : t;
	      var winArg= "scrollbars=yes,resizable=yes,width=" + w + ", height=" + t + ",left=200,top=150";
          if (typeof OrdWin!='undefined')
                          if (!OrdWin.closed)
                                  OrdWin.self.close();
		  OrdWin=window.open('text_win.php?pid='+ ix,'Item',winArg);
          OrdWin.window.resizeTo( w,t );
   }
   
