﻿function popWin(image_id, width, height)
{
	var n = window.open('image.aspx?id=' + image_id, 'pop', 'height=' + height + ',width=' + width + ',scrollbars=1,status=0,toolbar=0,resizable=1,location=0');
	n.moveTo(15,15);
	n.focus();
}