function openPopup(url, name, style) {
	if (!name) name = new Date().getTime() + '';
	if (!style)
		style = 'width=900,height=400,status=yes,menubar=no,toolbar=no,resizable=no,scrollbars=yes,location=no';
		var popupWindow = window.open(url,name,style);
		popupWindow.focus();
}	

