function switchMenu(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != "none" ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}

function goResize(id) { 
	if(id != ''){
		window.location.href='/resize/'+id+'/'+screen.width+'x'+screen.height+'/';
	}
}

function fbs_click() {
	u=location.href;
	t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
}

if (top.location != self.location) {
	top.location.replace(self.location);
	if(navigator.appName == "Microsoft Internet Explorer"){
		window.document.execCommand('Stop');
	}
	else{
		window.stop();
	}
}