

/***********************************************
* Bookmark site script- 

/* Modified to support Opera */
function bookmarksite(title,url)
{
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}
/*****************************************************************
 Don't let other frame to content the site
 *****************************************************************/
function breakout_of_frame()
{
  //alert(top.location);
  //alert(location);
  if (top.location != location) 
  {
    top.location.href = document.location.href ;
  }
}
/******************************************************/


/*-- Counter -->*/
function stat(code)
{
	nedstatbasic(code,0);
}

/*<!-- Hints Debut -->*/

function THints (o_cfg, items) {
	this.top = o_cfg.top ? o_cfg.top : 0;
	this.left = o_cfg.left ? o_cfg.left : 0;
	this.n_dl_show = o_cfg.show_delay;
	this.n_dl_hide = o_cfg.hide_delay;
	this.b_wise = o_cfg.wise;
	this.b_follow = o_cfg.follow;
	this.x = 0;
	this.y = 0;
	this.divs = [];
	this.show  = TTipShow;
	this.showD = TTipShowD;
	this.hide = TTipHide;
	this.move = TTipMove;
	//if (document.layers) return;
	var b_IE = navigator.userAgent.indexOf('MSIE') > -1,
	s_tag = ['<div id="TTip%name%" style="visibility:hidden;position:absolute;top:0px;left:0px;',   b_IE ? 'width:1px;height:1px;' : '', o_cfg['z-index'] != null ? 'z-index:' + o_cfg['z-index'] : '', '"><table cellpadding="0" cellspacing="0" border="0"><tr><td class="', o_cfg.css, '" nowrap>%text%</td></tr></table></div>'].join('');


	this.getElem = 
		function (id) { return document.all ? document.all[id] : document.getElementById(id); };
	this.showElem = 
		function (id, hide) { this.divs[id].o_css.visibility = hide ? 'hidden' : 'visible'; };
	this.getWinSz = window.innerHeight != null 
		? function (b_hight) { return b_hight ? innerHeight : innerWidth; }
		: function (b_hight) { return document.body[b_hight ? 'clientHeight' : 'clientWidth']; };	
	this.getWinSc = window.innerHeight != null 
		? function (b_hight) { return b_hight ? pageYOffset : pageXOffset; }
		: function (b_hight) { return document.body[b_hight ? 'scrollTop' : 'scrollLeft']; };	
	if (window.opera) {
		this.getSize = function (id, b_hight) { 
			return this.divs[id].o_css[b_hight ? 'pixelHeight' : 'pixelWidth']
		};
		document.onmousemove = function () {
			myHint.x = event.clientX;
			myHint.y = event.clientY;
			if (myHint.b_follow && myHint.visible) myHint.move(myHint.visible)
			return true;
		};
	}
	else {
		this.getSize = function (id, b_hight) { 
			return this.divs[id].o_obj[b_hight ? 'offsetHeight' : 'offsetWidth'] 
		};
		document.onmousemove = b_IE
		? function () {
			myHint.x = event.clientX + document.body.scrollLeft;
			myHint.y = event.clientY + document.body.scrollTop;
			if (myHint.b_follow && myHint.visible) myHint.move(myHint.visible)
			return true;
		} 
		: function (e) {
			myHint.x = e.pageX;
			myHint.y = e.pageY;
			if (myHint.b_follow && myHint.visible) myHint.move(myHint.visible)
			return true;
		};
	}
	for (i in items) {
		document.write (s_tag.replace(/%text%/, items[i]).replace(/%name%/, i));
		this.divs[i] = { 'o_obj' : this.getElem('TTip' + i) };
		this.divs[i].o_css = this.divs[i].o_obj.style;
	}
}

function TTipShow (id) {
	if (document.layers) return;
	this.hide();
	if (this.divs[id]) {
		if (this.n_dl_show) this.divs[id].timer = setTimeout("myHint.showD(" + id + ")", this.n_dl_show);
		else this.showD(id);
		this.visible = id;
	}
}

function TTipShowD (id) {
	this.move(id);
	this.showElem(id);
	if (this.n_dl_hide) this.timer = setTimeout("myHint.hide()", this.n_dl_hide);
}

function TTipMove (id) {
	var n_x = this.x + this.left, n_y = this.y + this.top;
	if (this.b_wise) {
		var n_w = this.getSize(id), n_h = this.getSize(id, true),
		n_win_w = this.getWinSz(), n_win_h = this.getWinSz(true),
		n_win_l = this.getWinSc(), n_win_t = this.getWinSc(true);
		if (n_x + n_w > n_win_w + n_win_l) n_x = n_win_w + n_win_l - n_w;
		if (n_x < n_win_l) n_x = n_win_l;
		if (n_y + n_h > n_win_h + n_win_t) n_y = n_win_h + n_win_t - n_h;
		if (n_y < n_win_t) n_y = n_win_t;
	}
	this.divs[id].o_css.left = n_x;
	this.divs[id].o_css.top = n_y;
}

function TTipHide () {
	if (this.timer) clearTimeout(this.timer);
	if (this.visible != null) {
		if (this.divs[this.visible].timer) clearTimeout(this.divs[this.visible].timer);
		setTimeout("myHint.showElem(" + this.visible + ", true)", 10);
		this.visible = null;
	}
}


///////////////////////////////////////////////////////////////////////////////

var HINTS_CFG = {
	'top'        : 5, // a vertical offset of a hint from mouse pointer
	'left'       : 5, // a horizontal offset of a hint from mouse pointer
	'css'        : 'hintsClass', // a style class name for all hints, TD object
	'show_delay' : 500, // a delay between object mouseover and hint appearing
	'hide_delay' : 4000, // a delay between hint appearing and hint hiding
	'wise'       : true,
	'follow'     : false,
	'z-index'    : 0 // a z-index for all hint layers
},

HINTS_ITEMS = 
[
	wrap("Just a little of good stuffs about me"),                          //0
	wrap("Just check the traffic out"),                                     //1
	wrap("If you like the oldies, listen to Nostalgie",true),               //2
	wrap("Check my family tree out"),                                       //3
	wrap("Lycee Saint Louis & Razi"),                                       //4
	wrap_img("Caen.jpg","Universite de Caen"),                              //5
	wrap_img("logfac.gif","Universite Pierre et Marie Curie"),              //6           
	wrap("You are only allowed to praise."),                                //7
	wrap_img("Huntington.jpg","Huntington Beach Surf City"),                //8
	wrap("Do you have an interesting topic?<br/>Post it at my Forum",true),  //9
	wrap("It's always a pleasure to read from you Emmanuel@Soheyli.com"),                        //10
	'<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="160"><tr class="row"><td width="158"><ul><li>Phone</li><li>Address</li><li>Map</li><li>Email Address</li></ul></td></tr></table>', //11
	wrap("<ul><li>Word Document</li><li>Htlm Format</li>"), //12
	wrap_radio("Nostalgie20ans.gif","Nostalgie La L&eacute;gende<br/>Beaucoup de chansons fran&ccedil;aises.<br/>Une information assez pointue."), //13
	wrap_radio("CherieFM.jpg","La radio qui fait chanter.<br/>Son programme musical m&eacute;lodique et romantique &agrave; souhait. Ses chroniques de plus en plus aff&ucirc;t&eacute;es."),//14
	wrap_radio("RTLLogo.gif","L'information : beaucoup de faits divers, mais avec toujours de la pr&eacute;cision et du factuel avant le commentaire.<br/>Les news sportives<br/>Les Grosses T&ecirc;tes<br/>Des jeux, des concours, des cadeaux."), //15
	wrap_radio("funradio.gif","Pour le fun et pour les tubes<br/>Une forte personnalit&eacute;. Fun Radio se pr&eacute;sente comme le forum d'une g&eacute;n&eacute;ration."),
	wrap_radio("OuiFM.gif","Ouirock - La Radio Rock !"), //16
	wrap_radio("NRJ.gif","NRJ diffuse aussi bien la derni&egrave;re nouveaut&eacute; que le gros tube de r&eacute;f&eacute;rence.<br/>Sites de stars et actualit&eacute;s musique<br/>Retrouvez aussi tous les concerts, et les bons plans &agrave; Paris et en province."), //17
	wrap_radio("RFM.gif", "Des rubriques int&egrave;ressantes. Les Week-ends Bis : chaque artiste a droit &agrave; un rappel."), //18
	wrap_radio("RTL2.gif","Toute la musique pop rock l'actualit&eacute; musicale des concerts en live et une base d'artistes rock"), //19
	wrap_radio("RireChanson.gif","&Ccedil;a va vous faire tout dr&ocirc;le !<br/>La Radio du Rire 24h / 24"), //20
	wrap_radio("e2.jpg","Elle a r&eacute;ussi la synth&egrave;se entre radio musicale et &agrave programme.<br/>La cr&eacute;ativit&eacute; et l'innovation."), //21
	wrap_radio("franceculture.gif","Le rythme des &eacute;missions &agrave; l'oppos&eacute; du zapping ambiant.<br/>La qualit&eacute; sonore de la r&eacute;alisation.<br/>La diversit&eacute; des themes abord&eacute;s.<br/>L'absence totale de publicit&eacute;."), //22
	wrap_radio("e1.gif","La nervosite de l'information, un vrai sens de la parole et du ton.<br/>La qualit&eacute; des chroniqueurs : toute la presse a rendez-vous sur Europe 1"), //23
	wrap_radio("france-inter.gif","La tr&eacute;s faible quantit&eacute; de publicit&eacute; sur l'antenne.<br/>Une information appuy&eacute;e sur les correspondants de Radio France ( ceux des radio locales et ceux &agrave; l'&eacute;tranger )<br/>Elle a de quoi s&eacute;duire un public qui recherche dans la radio ce qu'il ne trouve que rarement : la parole intelligente."), //24
	wrap_radio("RMC.gif","La valeur sud L'information r&eacute;gionale : RMC dispose de huit bureaux r&eacute;gionaux."), //25
	wrap_radio("SkyRock.gif","Plus de tubes et moins de pub.<br/>Priorit&eacute &agrave; la musique<br/>Une bonne programmation musicale."), //26
	radio("In 1931, privatization of the broadcasting service luxembourgeois that will become the CLT (Compagnie Luxembourgeoise de T&eacute;l&eacute;diffusion ) in the years 1950. In 1967 finally, Radio-Luxemburg becomes RTL (Radio Television Luxembourg) on the initiative of Jean Farran. To the summer 1996 the CLT merges with Bertelsmann to give CTL-UFA"), //27
	radio("In 1947, a small Parisian radio, Paris Inter, distribute its programs on emitter until there used by the states. In 1964, the public gives him his present name from a contest."), //28
	radio("It is Louis Merlin who, in 1955, brings the breath and the concept to this new radio, with the funds of the businessman Charles Michelson. Both want to create a station which will revolutionize the practices by putting the most modern techniques at the service of information and publicity. Since, Europe 1 always complies with this rule. "), //29
	radio("In March 1942 German creates in Monaco a radio of propaganda. In August 1944 the emissions stop. Radio Monte-Carlo will take again its activities on June 26, 1945, directed by the French State and Principality of Monaco. Since 1994, this last seeks to be disengaged some; in 1998 NRJ, 'Sud Radio' and 'La D&eacute;p&eacute;che du Midi' take the control of the station. "), //30
	wrap("Take a look at Radio's Statistic"), //31
	radio("Ch&eacute;rie FM a &eacute;t&eacute; cr&eacute;&eacute; en 1987 par Jean-Paul Baudecroux patron de NRJ."), //32
	radio("C'est Louis Merlin qui, en 1955, apporte le souffle et le concept &agrave; cette nouvelle radio, avec les fonds de l'homme d'affaires Charles Michelson. Tous deux veulent cr&eacute;er un poste qui r&eacute;volutionnera les habitudes en mettant les techniques les plus modernes au service de l'information et de la publicit&eacute. Depuis, Europe 1 respecte toujours cette r&egrave;gle."), //33
	radio("En 1986 Patrick Fillioud et Marc Garcia imaginent un programme pour les radio locales. Ils le testent &agrave; Dijon puis l'ann&eacute;e suivante, &agrave; Paris. Depuis plus de cent cinquante villes le diffusent. Les deux fondateurs ont quitt&eacute; le navire."), //34
	radio("Cr&eacute;ation en 1963 &agrave; la cr&eacute;ation de Radio France en m&ecirc;me temps que France Musique."), //35
	radio("En 1947, une petite radio parisienne, Paris Inter, diffuse ses programmes sur &eacute;metteur utilis&eacute; jusque-l&agrave; par les forces &eacute;tats-uniennes. En 1964, le public lui donne son nom actuel lors d'un concours."), //36
	radio("Cr&eacute;&eacute;e en 1984 par une &eacute;quipe dissidente de NRJ, Fun Radio se d&eacute;veloppe de fa&ccedil;on ind&eacute;pendante jusqu'en 1987 o&ugrave; elle est rachet&eacute;e par la Robert Hersant ( l'homme de presse ). Tr&egrave;s musicale au d&eacute;but des ann&eacute;es 1990, elle s'est transform&eacute;e petit &agrave; petit en libre antenne. En 1992, la CLT la rach&egrave;te."),//37
	radio("En 1983 Pierre Alberti, ex-b&ucirc;cheron et ferrailleur, f&acirc;ch&eacute; de ne pas trouver une radio qui lui pla&icirc;t sur la bande FM lyonnaise, cr&eacute;e la sienne. Six ans plus tard, il la vend &agrave; RMC. En 1998 NRJ, Sud Radio et La D&eacute;p&egrave;che du Midi prennent le contr&ocirc;le de la station."), //38
	radio("En 1980 un jeune homme comme il faut r&ecirc;ve de cr&eacute;er une radio dans les &icirc;les anglo-saxonnes. En 1981, pariant sur l'avenir apr&egrave;s l'&eacute;lection de Francois Mitterrand, il installe du mat&eacute;riel dans une chambre de bonne parisienne et un &eacute;metteur &agrave; la fen&ecirc;tre. Jean-Paul Baudecroux vient de fonder NRJ."), //39
	radio("Oui Fm n'&eacute;met que sur l'Ile-de-France"), //40
	radio("En 1981 Patrick Meyer cr&eacute;e RFM. Pour survivre, elle &eacute;met &agrave; une puissance excessive et diffuse de la pub : les autorit&eacute;s n'appr&eacute;cient pas. Malgr&eacute; le soutien de Coluche, RFM est brouill&eacute;e, puis oblig&eacute;e de se taire pendant 423 jours. La station vivote jusqu'en 1989 o&ugrave; le groupe Crown Communication ( Royaume-Uni ) la rach&egrave;te avant de la c&eacute;der &agrave; Europe 1 &agrave; l'&eacute;t&eacute; 1994."),
	radio("la station radio qui fait la part belle aux comiques en tout genre et aux citations d&eacute;sopilantes."),
	radio("En mars 1942 les allemands cr&eacute;ent &agrave; Monaco une radio de propagande. En ao&ucirc;t 1944 les &eacute;missions s'arr&ecirc;tent. Radio Monte-Carlo reprendra ses activit&eacute;s le 26 juin 1945, dirig&eacute;e par la Principaut&eacute; de Monaco et l'&eacute;tat fran&ccedil;ais. Depuis 1994, ce dernier cherche &agrave; s'en d&eacute;sengager ; en 1998 NRJ, Sud Radio et La D&eacute;p&egrave;che du Midi prennent le contr&ocirc;le de la station."),
	radio("En 1931, privatisation du service luxembourgeois de radiodiffusion qui deviendra la CLT ( Compagnie Luxembourgeoise de T&eacute;l&eacute;diffusion ) dans les ann&eacute;es 1950. En 1967 enfin, Radio-Luxembourg devient RTL ( Radio T&eacute;l&eacute;vision Luxembourg ) &agrave; l'initiative de Jean Farran. &agrave; l'&eacute;t&eacute; 1996 la CLT fusionne avec Bertelsmann pour donner CTL-UFA"),
	radio("Le groupe CLT s'est int&eacute;ress&eacute;e bien tard &agrave; la FM. C'est seulement en 1989 qu'elle lance le r&eacute;seau Maxximum. Parce que RTL est la premi&egrave;re radio de France, elle tombe sous le coup de la loi anti-concentration des m&eacute;dia et n'arrive pas &agrave; d&eacute;velopper son second r&eacute;seau FM. En 1991, la CLT change son fusil d'&eacute;paule, se d&eacute;sengage de Maxximum ( o&ugrave; elle &eacute;tait actionnaire pricipal ) et la fait fusionner avec M&eacute;tropolis pour cr&eacute;er un seul r&eacute;seau ( M40 ); o&ugrave; elle est minoritaire. En 1994, la station abandonne la techno et la dance pour se consacrer au disco et prend son nom actuel. En 1996, elle laisse tomber la vague disco, pour pouvoir se consacrer &agrave; une cible plus large."),
	radio("Skyrock, cr&eacute;&eacute;e en 1986, est l'aventure d'un seul homme : Pierre Bellanger. Tout petit, il tombe dans la FM et participe &agrave; l'aventure des radios libres : Radio Paris 80, Cit&eacute; 96, Cit&eacute; Future. Puis il installe la sienne La Voix du L&eacute;zard qu'il transforme en Skyrock. En 1999, Hachette Filippacchi Media s'est s&eacute;par&eacute; des 80% du capital en le vendant fonds d'investissement britannique Morgan Greffell Private Equity ( filiale de Deutsche Bank )"),
	radio_SP("According to KIRN Law office this page was an infringement of their copyright and trademark rights. Apparatenly they need more traffic that they get in order to increase their commercial advertising. Big deal, go to their site to listen the radio."),
	//wrap_radio("kirn.bmp","KIRN 670 is an audio channel that delivers music and news updates 24 hours a day in Farsi language"),
	wrap_radio("SedayehIran.gif","A Farsi-language audio service featuring music, live news updates, morning shows, talk shows, home and family-oriented programming."),
	wrap_radio("SedayeRoozLogo.jpg","This radio is broadcasting SCMO system on side band of FM 95.3 from Toronto, Canada. You can enjoy listening to Radiorooz using a special receiver device in Ontario or using Internet through the world wide."),
	//50
	wrap_radio("RadioFarda.GIF","Radio Farda is a service of U.S. International Broadcasting, which is funded by the U.S. Congress and operated by the Broadcasting Board of Governors (BBG), an agency of the U.S. Government."),
	wrap_radio("AFNFarsiNet.GIF","24 Hour AFN Farsi Net radio live from Los Angeles Satellite name: Telstar 12 and Telstar 5 Covers Iran, Europe, America, Canada, middle east and... "),
	wrap_radio("Darvish.jpg","RADIO DARVISH PERSIAN TRADITIONAL MUSIC This site and webcast is dedicated to Persian traditional music fans. Music crosses language boundries and brings people closer to one another."),
	wrap_radio("EshghIran.GIF","24 / 7 Persian Music for low speed connection"),
	wrap_radio("IranianRadio.gif","Prolocation: IranianRadio.com - IranianRadio, Your Radio! - High-Speed"),
	wrap_radio("RadionIranOnLine.jpg","They charge $5.00 per month for this radio. I'm looking for the new free radios. "),
	wrap_radio("AryaLive.gif","Aryalive.com is a free, non-political portal, designed to entertain all people with Persian and Intrenational music, news and video feeds."),
	wrap_radio("Stat.bmp",""),
	wrap_radio("RadioIsrael.gif","Radio Israel broadcasts 1H 25 per day recorded in 3 tapes"),
	wrap_radio("bbc_persian.gif","3 programs Morning, Midday, and Evening"),
	//60
	wrap_radio("rfi_r.gif","Radio France International. <br/>2 programs 16:00 16:30 and 18:00 19:00"),
	wrap_radio("VOA_Persian.gif","Voice of America <br/>4 information program"),
	wrap_radio("kirn.bmp","Their bandwidth provider is experiencing problems and subsequently their streaming is down for the time being. They are trying to fix this issue as soon as possible.<br/> Thanks for your patience."),
	wrap_radio("BMoshiri.gif","Historian, Writer and Showhost at PARS TV. His vast knowledge in these fields, combined with an amazing memory, allows him to very successfully host radio and television programs and classes. You will benefit from listening to his shows."),
	wrap_radio("cnnradio_logo.gif","Listen to latest news from CNN"),
	wrap_radio("Rangarang.jpg","Broadcast live from Stockholm, Sweden Mon-Fri 19.00 to 24.00"),
	wrap_radio("IranOnAir.gif","Radio Iran Onair, with more than 10 years of FM broadcasting"),
	wrap_radio("RadioRamak.jpg","Radio Ramak Broadcasting 24 hours from Seoul - Corea"),
	wrap_radio("Azadi.gif","Providing a platform for dialogue regarding the past, present and future of Iran."),
	radio("Beirut Nights radio plays Eurodance and Trance,  Mediterranean music (from Lebanon,  Greece, Turkey, Egypt, Italy, North African Rai, Iran)"),
	//70
	wrap_radio("Azadegan.jpg","A Voice for Supporters of Peace, Friendship, and Justice in the World"),
	wrap_radio("RadioJavan.jpg","The hottest and fastest-growing Persian radio station on the net, Radio Javan aims to take interactivity to the next level by offering an unprecedented number of exclusive features.")
	,wrap_radio("Zamaneh.jpg","The aim of Radio Zamaneh, according to its administrators, is to produce and broadcast informative programs of high journalistic quality, independent from any governmental, political or social force inside or outside of Iran.") 
	,wrap("Call Me From US - Canada For Free")
	, wrap_radio("Fazeli2.JPG","Prior to the revolution Fazelli was well established as an actor, director and producer. Currently he presents the morning programe Navid Azadi in Pars Television<br/>TEL: (818) 581-7545<br/>P.O. BOX 5255<br/>Chatsworth CA 91313 ") 
	, wrap_radio("Golha.gif","Radio Golha is a non-commercial Persian internet radio station dedicated solely to broadcasting the Golha programs.") 
	, wrap_radio("Sour_Desc.jpg","His perennial themes are: hatred for the Islamic Repubic of Iran for ruining the country and oppressing its people, contempt for the USA's incompetence dealing with it and mistrust of the Iranian expatriate opposition, which he considers corrupt and halfhearted.") 
	, wrap_radio("Nour_desc.jpg","He has been active in the Iranian journalistic milieu since 1967. He's currently in a daily show at Channel One TV.") 
	, wrap_radio("meybodi_desc.gif","One of the most listened show in Persian community. Personally I never  miss it. ") 
	, wrap_radio("persian_news_talk_7oclock.jpg","News - Talk 23:00 Tehran Time")
	// 80 
	, wrap_radio("Persian_NewsViews.jpg","News & Views - 20:00 Tehran Time") 
	, wrap_radio("persian_roundtable.jpg","Round Table - 21:00 Tehran time")
	, wrap_radio("Late_edition_pb2.jpg","Shabahang") 
	, wrap_radio("VOA_Women.jpg","Women Views - 18:10 Tehran time")
	, wrap_radio("Morteza_Mohit.jpg","From Negaheno.net<br/> Socialism, imperialism, philosophy, Economy, and politic")
	, wrap_radio("Hassibi_small.jpg", "From Jahan TV Iran National Front 'Jebhe-Melli'")
	, wrap_radio("Saffari.jpg", "A patriotic Iranian journalist from Aria TV. Bidari, Payedari, Piroozi") 
	, wrap("IRAN Beautiful Country")
	 // 88
];
	//wrap-img("RTLLogo.gif","<table><tr><td >Retrouvez les infos en direct</td></tr></table>"),

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

function wrap (s_, b_ques) 
{
	HINTS_CFG.hide_delay = 6000;
	return "<table cellpadding='0' cellspacing='0' border='0' style='-moz-opacity:90%;filter:progid:DXImageTransform.Microsoft.dropShadow(Color=#777777,offX=4,offY=4)'><tr><td rowspan='2'><img src='img/1"+(b_ques?"q":"")+".gif'></td><td><img src='/img/pixel.gif' width='1' height='15'></td></tr><tr><td background='img/2.gif' height='28' nowrap>"+s_+"</td><td><img src='img/4.gif'></td></tr></table>"
}

function wrap_img (s_file, s_title) 
{
	HINTS_CFG.hide_delay = 6000;
	return "<table cellpadding=5 bgcolor=white style='border:1px solid #777777'><tr><td><img src='Pictures/"+s_file+"' class='picI'></td></tr><tr><td align=center>"+s_title+"</td></tr></table>"
}
function wrap_radio(s_file,s_title)
{
    HINTS_CFG.hide_delay = 12000;
	return "<table cellpadding=5 bgcolor=white style='border:1px solid #777777' ><tr><td width='100px'><img src='Images/RadioHint/"+s_file+"' class='picI'></td></tr><tr><td><p align='justify'>"+s_title+"</p></td></tr></table>"
}
function radio(def)
{
	HINTS_CFG.hide_delay = 0;
	return "<table bgcolor=white border='1' cellpadding='5' cellspacing='5' style='-moz-opacity:90%;filter:progid:DXImageTransform.Microsoft.dropShadow(Color=#777777,offX=4,offY=4)' width='350' ><tr><td><p align='justify'>" + def + "</p></td></tr></table>"

}
function radio_SP(def)
{
	HINTS_CFG.hide_delay = 12000;
	return "<table bgcolor=white border='1' cellpadding='5' cellspacing='5' style='-moz-opacity:90%;filter:progid:DXImageTransform.Microsoft.dropShadow(Color=#777777,offX=4,offY=4)' width='350' ><tr><td><p align='justify'>" + def + "</p></td></tr></table>"

}
