// JavaScript Document

function get_data(text, div, doc)
{
    var xmlhttp = false;
	if (window.XMLHttpRequest)
	{
	xmlhttp = new XMLHttpRequest();
	}
	else if (window.ActiveXObject)
	{
	xmlhttp = new ActiveXObject ("Microsoft.XMLHTTP");
	}
	//----------------------------------------------------
	xmlhttp.open("GET", doc+"?"+text);//method, target, async (set always true!)
    
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4) 
		{
			if (xmlhttp.status == 304 || xmlhttp.status == 200)
			{
				document.getElementById(div).innerHTML = xmlhttp.responseText;
			}
			else
			{
				alert('er gaat iets fout.');
			}
		
		}
    }
    xmlhttp.send(null);

	
}




function popuponclick()
{
my_window = window.open("http://www.pornokanalen.nl/",
  "mywindow","status=1,width=0,height=0");
//my_window.document.write('<H1>The Popup Window</H1>');  
my_window.close();

}