function over(x) {
    var c = x.src;
	var i = c.substr(c.lastIndexOf("."), 3);
	x.src = (c.substr(c.lastIndexOf(".")-5,5).indexOf("over") == 1) ? c.replace("_over","") : c.replace(i, "_over" + i);
}

function sendto() {
		window.open("sendtofriend.aspx?url=" + location.href,"sendto","width=400, height=300");
}

function setTitle(x) {
	document.title = document.title + ": " + x;
}

function viewAutoImg(x) {
	var n = (x.src.replace("getthumbnail.aspx?src=", ""));
	blowup(n);
}

function blowup(x) {
	window.open('browser.aspx?image=' + x,'image','width=300, height=300, resizable=yes');
}

function mblowup(x) {
	window.open('../browser.aspx?image=' + x,'image','width=300, height=300, resizable=yes');
}