/**
 *
 *  $ click JavaScript program
 *
 *  @charset shift_jis
 *
 *  @author   koji sugimoto
 *
 *  @written  2011.03.29
 *  @update   2011.03.29
 *
 */


//===========================================
// getElementById
//===========================================
//{
	function $(id)
	{
		var e = document.getElementById(id);
		return e;
	}
//}


//====================================
// Swap Image
//====================================
//{
	function swap_image(name, src)
	{
		var extension, toSrc, newImage;

		if(src.indexOf("_mo") != -1)
		{
			toSrc = src.replace("_mo.", ".");
		}
		else
		{
			extension = src.substr(src.length - 3);

			toSrc = src.replace("." + extension, "_mo." + extension);
		}

		newImage = new Image();
		newImage.src = toSrc;

		eval("document."+name+".src = '"+newImage.src+"';");
	}
//}


//===========================================
// window open function
//===========================================
//{
	function wopen(uri, w, h)
	{
		w += 13;
		h += 62;

		if(navigator.userAgent.indexOf("Mac") != -1)
		{
			w += 280;
		}

		window.open(uri, "", "width=" + w + ",height=" + h + ",scrollbars=yes,status=yes,resizable=no");
	}
//}


