function open_popup(url, name, width, height, scrollbars) {
	newwindow = window.open(url,name,'height=' + height + ',width=' + width + ',left=100,top=100,resizable=no,scrollbars=' + scrollbars + ',toolbar=no,location=no,menubar=no,status=yes');
}

function load_page_in_parent(url) {
	opener.location.href = url;
}