function openWindow(url, title) {
	window.open(url, title, "toolbar=no,status=yes,scrollbars=no,resizable=no,width=490,height=320");
}

function resizeWindow() {
	IE7 = ((document.all) && (navigator.appVersion.indexOf("MSIE 7.") != -1)) ? true : false;
	if (IE7) {
		this.window.resizeTo(document.images['img'].width + 40, document.images['img'].height + 115);
	}
	else {
		this.window.resizeTo(document.images['img'].width + 40, document.images['img'].height + 90);
	}
}
