//popup
function popsn(url,content,w,h) { //no scroll
	l = (screen.width) ?	(screen.width-550) / 2	: 0;
	t = (screen.height) ?	(screen.height-400) / 2 : 0;	
	var opt='top='+t+',left='+l+',width='+w+',height='+h;
	opt=opt+',toolbar=no,status=no,directories=no,scrollbars=no,location=no,resizable=no,menubar=no';
	window.open(url,content,opt);
}

function popsy(url,content,w,h) { // scroll
	l = (screen.width) ?	(screen.width-550) / 2	: 0;
	t = (screen.height) ?	(screen.height-400) / 2 : 0;	
	var opt='top='+t+',left='+l+',width='+w+',height='+h;
	opt=opt+',toolbar=no,status=no,directories=no,scrollbars=yes,location=no,resizable=no,menubar=no';
	window.open(url,content,opt);
}

///// Auto blur
function autoBlur(){ 
	if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") 
	document.body.focus(); 
}

//document.onfocusin=autoBlur; 

