function Flyer(URL, WIDTH, HEIGHT)
{
        windowprops = "left=0,top=0,width=" + (WIDTH) + ",height=" + (HEIGHT);
        text = "<html><head><title>Flyer</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor='black'";
        text += "><center><img src='http://partyzone.kartagon.com/data/flyer/" + URL + "' ";
        text += "width=" + WIDTH + " height=" + HEIGHT + " border=0 alt='Flyer' hspace=0 vspace=0>";
        text += "</center></body></html>";

        preview = window.open("", "Flyer", windowprops);
        preview.document.open();
        preview.document.write(text);
        preview.document.close();
}


function changeImages() {
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}