var mywindow;
function openwindow(Name,X,Y)
{
    if (typeof mywindow != 'undefined') {
    mywindow.close();
    };
	mywindow=window.open(Name,"mywindow","menubar=0,resizable=0,width="+X+",height="+Y);
};
function openwindowA(Image,Titel,Ximg,Yimg,X,Y)
{
	mywindow=window.open("","mywindow","menubar=0,resizable=0,width="+X+",height="+Y);
    mywindow.document.write( "<html> <head> <link rel='stylesheet' type='text/css' href='style.css'></head> <body style='background:black;'> <center><img id='popup' alt='Terug...' target=_top border=1 src="+Image+" height="+Yimg+" width="+Ximg+" ><br> <i>"+Titel+"</i></center> </body></html>");
    mywindow.document.close();
    mywindow.resizeTo(X,Y);
    mywindow.focus();
};

function swapImages() 
{
document['filmpje'].src="paint.gif";
};
/* image met id=filmpje wordt dit toegewezen en gecached */

