function Back()
{
	history.back();
}

function DisplayPicture(ImgName)
{
	var popUp; 
	var windowProps = "width=313,height=335,scrollbars=0";
	popUp = window.open('', "Picture", windowProps);
	var thisWindow = popUp.document;
	thisWindow.write('<html><head></head>');
	thisWindow.write('<body onBlur="self.focus()"><img src=');
	thisWindow.write(ImgName);
	thisWindow.write(' border=0>');
	thisWindow.write('<center><a href="javascript:self.close()">Close</a></center>');
	thisWindow.write('</body></html>');
	thisWindow.close();
}

function OldDisplayPicture(ImgName)
{
	var popUp; 
	var windowProps = "width=313,height=318,scrollbars=0";
	popUp = window.open(ImgName, "ProductPicture", windowProps);
}

function PopWindow(Url)
{
	var popUp; 
	var windowProps = "width=600,height=450,scrollbars=1,resizable,top=300,left=300";
	popUp = window.open(Url, "PopWindow", windowProps);
}

function CloseWindow()
{
	self.close();
}
			
function PrintWindow()
{
	if (window.print) 
	{
		window.print();
	}
}

function AddFavorite()
{
	window.external.AddFavorite('http://www.AndaraGifts.com/', 'AndaraGifts.com');
}