function hideFlash() {
	if ($('middle2Right_2')) {$('middle2Right_2').hide()};
	if ($('topBannerSlot')) {$('topBannerSlot').hide()};
	if ($('live')) {$('live').hide()};
	if ($('left_banner_1')) {$('left_banner_1').hide()};
	if ($('left_banner_2')) {$('left_banner_2').hide()};
	if ($('left_banner_3')) {$('left_banner_3').hide()};
	if ($('hpContainer')) {$('hpContainer').hide()};
	if ($('mystylewatchTab')) {$('mystylewatchTab').hide()};
}

function showFlash() {
	if ($('middle2Right_2')) {$('middle2Right_2').show()};
	if ($('topBannerSlot')) {$('topBannerSlot').show()};
	if ($('live')) {$('live').show()};
	if ($('left_banner_1')) {$('left_banner_1').show()};
	if ($('left_banner_2')) {$('left_banner_2').show()};
	if ($('left_banner_3')) {$('left_banner_3').show()};
	if ($('hpContainer')) {$('hpContainer').show()};
	if ($('mystylewatchTab')) {$('mystylewatchTab').show()};
}

function changeSize(p,el) {
	var fs = $(el).getStyle('font-size').replace('px','');
	var nfs = parseFloat(fs);
	if (p == 'grow') {
		nfs++;
	}
	else {
		nfs--;
	}
	if ((nfs > 8)&&(nfs < 16)) {
		$(el).setStyle({fontSize: nfs+'px'});
	}
}

function add2fav(cat,id,img,title,url) {
	$('fav').innerHTML='<span class="right" style="background-image:none;"><img src=templates/default/images/waiting.gif /></span>';
	var params = 'cat='+cat+'&id='+id+'&image='+img+'&title='+title+'&url='+url;
	var myAjax = new Ajax.Request('ajax/add2fav.asp', {method:'post',encoding:'utf-8',parameters:params,onComplete:function(r){favResponse(r)}});
}

function favResponse(response) {
	if (response.status==200) {
		$('fav').innerHTML='<span class="right" style="background-image:none;">'+response.responseText+'</span>';
	} else {
		alert(response.responseText);
	}
}
