/**

 * Copyright 2003 SystemArt Inc. All Rights Reserved.

 *

 *

 * 本関数について

 *

 * body の onload イベントハンドラで本関数を呼び出すことで

 * リンクタグ(A) に自動的にパラメータを付加することが出来ます。

 *

 * 作成者 : norio

 *

 */



function autoParameterHTML() {



	var paramNameH  = new Array("serverId");

	var paramValueH = getAutoParameterServerId();

	autoParameter(paramNameH, paramValueH);



}

function getAutoParameterServerId() {
	return new Array("7");
}
