var newWindow;
var wheight = 0, wwidth = 0;

function popup(url, title, width, height) {

	if (!newWindow || newWindow.closed) {

		newWindow = window.open('', 'htmlname', 'width=' + width + ', height=' + height + ', resizable=1, top=50, left=20');
		wheight = height;
		wwidth = width;
	}

	if (wheight != height || wwidth != width) {
		newWindow.resizeTo(width, height);
		wheight = height;
		wwidth = width;
	}
	
	newWindow.document.clear();
	newWindow.focus();
	newWindow.document.writeln('<html> <head> <title>' + title + '<\/title> <\/head>');
	newWindow.document.writeln('<body style="margin: 0px; padding: 0px">');
	newWindow.document.writeln('<img src=' + url + ' title=\"' + title + '\" alt=\"' + title + '\" >');
	newWindow.document.writeln(' <\/body> <\/html>');
	newWindow.document.close();
	newWindow.focus();
}


