
	function showUserIdCard(id) {
		window.open('../user/user.card.id.php?userid='+id+'&'+session["name"]+'='+session["id"],'userid','scrollbars=yes,width=580,height=400,status=yes,resizable=yes');
	}
	function siteDetailCard(id,relaunchid) {
		window.open('../sites/sites.detail.php?siteid='+id+'&relaunchid='+relaunchid+'&'+session["name"]+'='+session["id"],'siteid','scrollbars=yes,width=580,height=400,status=yes,resizable=yes');
	}	

	var thumbnailWindow = null;
	function openThumbnail(i,t,w,h) {
		if(thumbnailWindow) { thumbnailWindow.close(); }
		thumbnailWindow = window.open('../openthumbnail.html','thumbnail','width='+w+',height='+h);

		with(thumbnailWindow) {
			document.write('<html><head><title>'+t+'</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table border="0" cellpadding="0" cellspacing="0"><tr><td><a href="javascript:window.close();"><img src="'+i+'" width="'+w+'" height="'+h+'" border="0" alt="click to close"></a></td></tr></table></body></html>');
			moveTo((screen.width-w)/2,(screen.height-h)/2);
			focus;
		}
	}
	
	function sendEmail(name,domain) {
		location.href = "mailto:"+name+'@'+domain;
	}	

	function openWindow(s,n,w,h) {
		window.open(s,n,'width='+w+',height='+h+',scrollbars=yes,resizeable=yes');
	}

	function swapImages(obj,src) {
		obj.src = src;
	}

	function swapBookmark(bookmarkId,bookmarkTyp) {
		var rnd = Math.round(Math.random()*100000000);
		var src = document.getElementById(bookmarkTyp+''+bookmarkId).src
		
		if(src.indexOf("btn_bookmark_added.gif") > -1 || src.indexOf("user.bookmark.add.php") > -1) {
			document.getElementById(bookmarkTyp+''+bookmarkId).src = "../user/user.bookmark.del.php?id="+bookmarkId+"&typ="+bookmarkTyp+"&"+session["name"]+"="+session["id"]+"&rnd="+rnd;
			document.getElementById(bookmarkTyp+''+bookmarkId).alt = "Add to your favorites";
		} else if(src.indexOf("btn_bookmark_not.gif") > -1 || src.indexOf("user.bookmark.del.php") > -1) {
			document.getElementById(bookmarkTyp+''+bookmarkId).src = "../user/user.bookmark.add.php?id="+bookmarkId+"&typ="+bookmarkTyp+"&"+session["name"]+"="+session["id"]+"&rnd="+rnd;		
			document.getElementById(bookmarkTyp+''+bookmarkId).alt = "Remove from your favorites";
		}
	}
	
	function suggestSiteExtend() {
		document.getElementById('suggestSiteExtended').style.display = "";
	}
	function swapUserVote(typ,id,vote) {
		var rnd = Math.round(Math.random()*100000000);
		document.images[typ+"_"+id+"_loader"].src = "../user/user.vote.php?typ="+typ+"&id="+id+"&vote="+vote+"&"+session["name"]+"="+session["id"];
	}
