function popup (l, n, p)
{
	var w= open (l, n, p);
	return;
}

function pictureWindow(url, width, height)
{
	var w=window.open(url,'picturewindow',"top=45,left=45,width="+ width + ",height=" + height + ",resizable=yes,scrollbars=no");
	w.focus();
	return;
}

function fitWindowSize()
{
	//alert(navigator.appName);
	if (navigator.appName == 'Netscape')
	{
		window.innerWidth = document.images[0].width;
		window.innerHeight = document.images[0].height;
	}
	if (navigator.appName == 'Microsoft Internet Explorer')
	{
		window.resizeTo(500, 500);
		width = 500 - (document.body.clientWidth -  document.images[0].width);
		height = 500 - (document.body.clientHeight -  document.images[0].height);
		window.resizeTo(width, height);
		//alert(width + "\n" + height);
   	}
}

