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;
	"toolbar=yes,status=yes,location=yes,menubar=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "toolbar=yes,status=yes,location=yes,menubar=yes,resizable=yes,scrollbars=yes";

                popwin = window.open("", name,'width=677, height=410, left=0, top=0', opts );
		popwin.focus();
	
	popwin.location = url;
	
}





