/***** Javascript open image *****/

function openLargeImage(large_image)
{
	window.open("/popup/index.html?"+large_image, "", "resizable=1,HEIGHT=200,WIDTH=200");
};


/**** Javascript Fit Window to Page *****/

var temp=self.location.href.split("?");
var image_url = (temp.length>1)?temp[1]:"";
var NS = (navigator.appName=="Netscape")?true:false;

function fitLargeImage()
{
   image_width = (NS)?window.innerWidth:document.body.clientWidth;
   image_height = (NS)?window.innerHeight:document.body.clientHeight;
   image_width = document.images[0].width - image_width;
   image_height = document.images[0].height - image_height;
   window.resizeBy(image_width, image_height-1);
   window.moveTo(0,0);
   self.focus();
};