function showPopup(href) {
	var newWindow = window.open(href, "", "width=600, height=500, resizable=yes");

	if(!newWindow) return false;
	return true;
}


