function openWindow(url,w,h)
{
	return !window.open(url,'fullSizePhoto','width='+w+',height='+h);
}

function onloadResizeWindow()
{
	if (document.documentElement.clientWidth>770) return false;
	image = document.getElementById('fullsize');
	explorer = (navigator.userAgent.indexOf('MSIE') != -1) && (!window.opera) ? true : false;
	window.resizeTo(image.width + 30,image.height + (explorer ? 110 : 136));
}