
function showImage(url, p)
{
	if (p == 1) { w = 550; h = 370; }
	else { w = 350; h = 570; }
	
	f = window.open(url, "image", "width="+w+",height="+h+",left=100,top=50,scrollbars=no,resizable=no");
	f.focus();
}
