// JavaScript Document

function PopUp(url, width, height) {
		
		var options = 'width=' + width + ',height=' + height + ',toolbar=1,scrollbars=1,resizable=1,location=1';
        window.open(url,'',options);
		return false;
	}
	
function miniPopUp(url, width, height, name) {
		
		var options = 'width=' + width + ',height=' + height + ',toolbar=0,scrollbars=1,resizable=0,location=0';
        window_handle = window.open(url,name,options);
		
		return false;
	}
	
function CloseAndGoTo(page, new_page) {
		if (new_page === true) {
			
			window.open(page, '', 'toolbar=1,scrollbars=1,resizable=1,location=1');
		}
		else {
			if (navigator.userAgent.indexOf("Opera")==-1) {
				window.opener.document.location.href = page;
			} else {
				
				opener.document.location.href = page;
			}
		}
		
		window.close();
	}
	
