/*filename:function.cssdate:20080414make:miyagi*/function openPopWin(url) {window.open(url, "pdtPop", "scrollbars,toolbar=no,width=530,height=460");}var PopupWindow = Class.create();PopupWindow.prototype = {    initialize: function(className, parentElement) {        var elements = document.getElementsByClassName(className, parentElement);        for (var i = 0, len = elements.length; i < len; i++) {            Event.observe(elements[i], 'click', this.addPopupEvent.bindAsEventListener(this));            Event.observe(elements[i], 'keypress', this.addPopupEvent.bindAsEventListener(this));        }    },    addPopupEvent: function(event) {        var element = Event.element(event);        var link = element.getAttribute('href');        window.open(link);        Event.stop(event);    }};function openPopWin02(url) {window.open(url, "pdtPop", "scrollbars,toolbar=no,width=513,height=595");}function show( id){	var hideObj = document.getElementById(id);	hideObj.style.display = "block";}function hide( id){	var hideObj = document.getElementById(id);	hideObj.style.display = "none";}/*** フラッシュのjs読み込み関数* @param {Number} flaurl フラッシュファイルのパス* @param {Number} flawidth　横幅* @param {Number} flaheigth　縦幅*/function flashImport( flaurl, flawidth, flaheigth){	flashdoc = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+flawidth+'" height="'+flaheigth+'">';	flashdoc += '<param name="movie" value="'+flaurl+'">';	flashdoc += '<param name="quality" value="high">';	flashdoc += '<param name="wmode"value="transparent" />';	flashdoc += '<embed src="'+flaurl+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+flawidth+'" height="'+flaheigth+'"></embed>';	flashdoc += '</object>';	document.write(flashdoc);}
