/*********************************************************************

  sellink.js

  start  2001/05/03
  update 2001/05/04

  Copyright (c) 2001 Kouichirou Urano <webmaster@mk-square.com>

  --------------------------------------------------------------------
  コンボボックスによるリンク JAVA Script
  VALUEが"-"の場合には動作しない
  別フレームへのリンクのみ対応

**********************************************************************/
function LinkSelect(form, sel)
{
	adrs = sel.options[sel.selectedIndex].value;
	if (adrs != "-" ) parent.contents.location.href = adrs;
}
