function newWindow(url, width, height) {
 window.open(url, 'Puheluiden_hinnat', 'height='+height+',width='+width+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=150,top=200');
}

function loadXMLDoc(url) {
	
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	} else {
		// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
	xmlhttp.open("GET",url,false);
	xmlhttp.send(null);
	document.getElementById('content').innerHTML=xmlhttp.responseText;
	alert(xmlhttp.responseText);
}
