function __doPostBack(eventTarget, eventArgument) {		var theform;		if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {			theform = document.Form1;		}		else {			theform = document.forms["Form1"];		}		theform.__EVENTTARGET.value = eventTarget.split("$").join(":");		theform.__EVENTARGUMENT.value = eventArgument;		theform.submit();	}function getCookie(theName){	theName += "="; //　= を追加	theCookie = document.cookie+";"; //　検索時最終項目で-1になるのを防ぐ	start = theCookie.indexOf(theName); //　指定されたセクション名を検索する	if (start != -1)	{		end = theCookie.indexOf(";",start); //　データを抜きだす		return unescape(theCookie.substring(start+theName.length,end));	}	return false;}	<!--		var Val='';			if (Val!=''){		var ChkDate='CheckDate';		if(Val!=getCookie(ChkDate)){			location.href('./')	//ページ期限切れ画面を表示		}	}$(document).ready(function(){	$.smoothAnchors(500, "swing", false);});$(function(){    $("tr:nth-child(odd)").addClass("odd");});
