//
// common
//
var cntLi=0;
limg=new Array();
function loadimg(url){
	if (navigator.appVersion > "3") {
		limg[cntLi]=new Image;
		limg[cntLi].src=path + url;
		cntLi++;
	}
}
function swapimg(name,url){
	if (navigator.appVersion > "3") {
		document.images[name].src=url;
	}
}




//
// Detect OS
//
var agt,cssName,OS;
agt=navigator.userAgent.toLowerCase();
if(agt.indexOf("win")!=-1){
	OS="win";
}else if(agt.indexOf("mac")!=-1){
	OS="mac";
}else{
	OS="other";
}

//
// Detect Browser
//
var IE=false;
var NN=false;
var N6=false;
if (document.all) {
	IE=true;
}else if (document.layers) {
	NN=true;
}else if (document.getElementById) {
	N6=true;
}



