function _gotoUrl(url){
		window.location = url;
}

function gotoUrl(tim,url){
	setTimeout('_gotoUrl("'+url+'")',tim);
}
function animation()
{
$(document).ready(function(){
	$("a").click(function(){
		//alert('Russian swaine!');
		
		setTimeout(go_to($(this).attr("href")), '5')
		return false;
	})
		
});
}
function popup(url, width, height)
{
/*	width+=30;
	height+=90;
	if(width<400) width = 400*/
	if(!width) width = 730
	if(!height) height = 580
	var left = (screen.width - width)/2;
	var wnd=window.open(url , "","left="+left+",top=10,width=" + width + ",height=" + height + ",directories=no,menubar=no,status=no,resizable=no,scrollbars=yes,toolbar=no");
	
}

