function getPage(url)
{
	
	
	$.get(url, function(data){
//		eval(script);
	 	$("#content").html(data);
	},"text");

}