aGetParam = new Array();

function getParam() {

	urlParam = window.location.search.substring(1);
	aTempParam = new Array();
	aTempParam = urlParam.split("&");
	for(i=0; i < aTempParam.length; i++) {
		strId = aTempParam[i].split("=")[0];
		strValue = aTempParam[i].split("=")[1];
		aGetParam[strId] = strValue;
	}
}