// magnum.js

function _JumpURL(url) 
{
  if (url != "")
  {
    window.location = url;
  }
}

//-->

function func_buy(thisObj, thisEvent) {
//use 'thisObj' to refer directly to this component instead of keyword 'this'
_JumpURL("/Magnum/buyer.jsp");


}
function func_sel(thisObj, thisEvent) {
//use 'thisObj' to refer directly to this component instead of keyword 'this'
//use 'thisEvent' to refer to the event generated instead of keyword 'event'
//actionBegin: com.ibm.sed.jseditor.script021
_JumpURL("/Magnum/seller.jsp");
//actionEnd: com.ibm.sed.jseditor.script021

}
function func_4(thisObj, thisEvent) {
//use 'thisObj' to refer directly to this component instead of keyword 'this'
//use 'thisEvent' to refer to the event generated instead of keyword 'event'
_JumpURL("/Magnum/pagedisplay.jsp?page=aboutus&pgname=mlsnireg");

}
function func_1(thisObj, thisEvent) {
//use 'thisObj' to refer directly to this component instead of keyword 'this'
//use 'thisEvent' to refer to the event generated instead of keyword 'event'
_JumpURL("/Magnum/index2.jsp");

}