// JavaScript Document
function view_address() { //modified for multiple e-mail addresses in a page
	if(anchors=document.getElementsByTagName('a')) {
		for(anctr=0;anctr<anchors.length;anctr++) {
			
			if(anchors[anctr].id=='e') {				
				address_to_replace=anchors[anctr].firstChild;
				real_address=address_to_replace.nodeValue.replace("[ at ]","@");
				address_to_replace.nodeValue=real_address;
				address_to_replace.parentNode.setAttribute("href","mailto:"+real_address);
			}
		}
	}
}
function favoris(site,sec){
//	test();
	popup=window.open("save.php?type=addfav&site="+site+"&sec="+sec,"popup","scrollbars=no,resizable=yes,width=260,height=60,left=260,top=200");
}
function favoris_annonce(id_pa){
//	test();
	popup=window.open("save.php?type=addfav_annonce&id="+id_pa,"popup","scrollbars=no,resizable=yes,width=260,height=60,left=260,top=200");
}

function coupcoeur(site){
//	test();
	popup=window.open("save.php?type=addvote&site="+site,"popup","scrollbars=no,resizable=yes,width=260,height=60,left=260,top=200");
}

function site_details(id_site) {
	new_win=window.open('site_details.php?id_site='+id_site,'details','width=420,height=520,top=1,left=1,scrollbars=0,status=0');
	new_win.focus();
}
function send_friend(url) {
	new_win=window.open('pop/pop_sendfriend.php?url='+url,'send','width=420,height=520,top=1,left=1,scrollbars=0,status=0,resizable=1');
	new_win.focus();
}
function win_open(loc,name,width,height) {
	new_win=window.open(loc,name,'width='+width+',height='+height+',top=1,left=1,scrollbars=1,status=0,resizable=1');
	new_win.focus();	
}
function show_hide_login_panel() {
	panel=document.getElementById('login_panel');
	if(panel) {
		displayz=panel.style.display;
		if(displayz=='none') panel.style.display='block';
		else panel.style.display='none';
	}
}