<!-- Begin
function iPop(img,w,h,ttl)
{
	iPopURL = 'http://aestheticstorm.net/_misc/mstudio/SITE/includes/ipop.html' // set as location of ipop.html
	url = iPopURL + '?' + img + (ttl ? '&'+escape(ttl) : '')
	l = (screen.width-w)/2
	t = (screen.height-h)/2
	attribs = 'width='+w+',height='+h+',left='+l+',top='+t
	open(url,'imgWin',attribs)
	return false;
}
// End -->