function pop(url, name, height, width, scrollbars)
{

    
	var popwin;
	"status=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=yes";


	popwin = window.open("", name, opts );	
	popwin.focus();
	
	popwin.location = url;
	
}



function popup(url, name, height, width, scrollbars)
{

    
	var popwin;
	"status=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=yes";


	popwin = window.open("", name,'width=577, height=510, left=0, top=0', opts );
		popwin.focus();
	
	popwin.location = url;
	
}



function map(url, name, height, width, scrollbars)
{

    
	var ppwin;
	"status=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=yes";


	ppwin = window.open("", name,'width=277, height=310, left=0, top=0', opts );
		ppwin.focus();
	
	ppwin.location = url;
	
}

