/* $Id: jslib.js,v 1.1 2002/09/23 11:23:31 oghma Exp $ */

function OpenInfo(id)
{
  window.open('info.php?goodsspr_id='+id, 'Info'+id, "alwaysRaised=yes,resizable=yes,scrollbars=yes,width=550,height=501");
}

function WinPopUp(url)
{
    win_id = 'Win_'+Math.round(Math.random()*100);
    width  = 550;
    height = 600;

    window.open(url, win_id, "alwaysRaised=yes,resizable=yes,scrollbars=yes,width="+width+",height="+ height);
}


