<!--// JavaScript Document
function makePopup(url, width, height, overflow) {

	if (width > 800) { width = 800; }
	if (height > 600) { height = 600;}

	if (overflow == '' || !/^(scroll|resize|both)$/.test(overflow)) {
		overflow = 'both';
	}

	var win = window.open(url, '', 'width=' + width + ',height=' + height
+ ',scrollbars=' + (/^(scroll|both)$/.test(overflow) ? 'yes' : 'no')
+ ',resizable=' + (/^(resize|both)$/.test(overflow) ? 'yes' : 'no')
+ ',status=yes,toolbar=no, menubar=no, location=no');
	
	return win;
};

-->