function OpenPopup(strUri, intWidth, intHeight) {
	if (typeof(intWidth) == 'undefined')
		intWidth = 400;
	if (typeof(intHeight) == 'undefined')
		intHeight = 500;
	window.open(strUri,'popup','width='+intWidth+', height='+intHeight+', scrollbars=1');
}