function openflyer(flyer,height,width) {
		var text = '<html>\n'
			+ ' <head>\n'
			+ '  <title>Flyer</title>\n'
			+ ' </head>\n'
			+ ' <body style="margin:0px; padding:0px;">\n'
			+ '  <img style="padding:0px; margin:0px" src="'+flyer+'">\n'
			+ ' </body>\n'
			+ '</html>';
        popup = window.open("about:blank","Flyer","Height="+height+",Width="+width);
		popup.document.open();
		popup.document.write(text);
		popup.document.close()
		popup.focus();
}

function doit(id) {
	if (document.getElementById(id).width>400) {
		document.getElementById(id).width = 400;
	}
}