function ismobile()
{
	var agt=navigator.userAgent.toLowerCase();
	return (agt.indexOf("iphone")>=0)
}
function imgresize(name,w,h)
{
	if(ismobile())
	{
		document[name].width=w;
		document[name].height=h
	}
}
function thumbresize(name)
{
	if(ismobile())
	{
		document[name].width=192;
		document[name].height=144
	}
}
function agendaresize(name)
{
	if(ismobile())
	{
		document[name].width=144;
		document[name].height=108;
		document[name].hspace=12
	}
}
if(ismobile()) 
{
	document.write('<LINK href="turing_m.css" type=text/css rel=stylesheet><nos'+'cript>');
}

